Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New landing page #1075

Draft
wants to merge 7 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitbook.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
root: ./

structure:
readme: LANDING.md
summary: SUMMARY.md

redirects:
Expand Down
Binary file added .gitbook/assets/card-example1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .gitbook/assets/card-example2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .gitbook/assets/card-example3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions .github/find-unreferenced-images.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Find all images in the .gitbook/assets and images directories
find .gitbook/assets -type f \( -iname "*.jpg" -o -iname "*.png" -o -iname "*.gif" \) > images_list.txt
find images -type f \( -iname "*.jpg" -o -iname "*.png" -o -iname "*.gif" \) >> images_list.txt


# Check each image for references in the site files and identify unreferenced images
while read image; do
image_name=$(basename "$image")
if ! grep -r --include=\*.md "$image_name" . > /dev/null; then
echo "$image_name is not referenced in any file."
fi
done < images_list.txt
7 changes: 7 additions & 0 deletions LANDING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Welcome

![](/images/kubecost_logo_horizontal_white.jpg)

Welcome to the official Kubecost documentation. Choose from one of the cards available or browse the full documentation from the sidebar.

<table data-view="cards"><thead><tr><th></th><th></th><th data-hidden data-card-target data-type="content-ref"></th><th data-hidden data-card-cover data-type="files"></th></tr></thead><tbody><tr><td><strong>Install and Configure</strong></td><td>Learn how to install and configure Kubecost.</td><td><a href="install-and-configure/install/install.md">install-and-configure/install/install.md</a></td><td><a href=".gitbook/assets/card-example1.png">card-example1.png</a></td></tr><tr><td><strong>Using Kubecost</strong></td><td>Learn how to use all of Kubecost's functionality.</td><td><a href="using-kubecost/navigating-the-kubecost-ui/README.md">using-kubecost/navigating-the-kubecost-ui/README.md</a></td><td><a href=".gitbook/assets/card-example2.png">card-example2.png</a></td></tr><tr><td><strong>APIs</strong></td><td>Inspect and learn how to use Kubecost's APIs.</td><td><a href="apis/apis-overview.md">apis/apis-overview.md</a></td><td><a href=".gitbook/assets/card-example3.png">card-example3.png</a></td></tr></tbody></table>
2 changes: 1 addition & 1 deletion SUMMARY.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Table of contents

* [Welcome to the Docs!](README.md)
* [Kubecost Documentation](LANDING.md)

## Install and Configure

Expand Down
Binary file added images/kubecost_logo_horizontal_white.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion troubleshooting/creating-a-support-ticket.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Creating a Kubecost Support Ticket in Slack

The Kubecost support team offers several channels for creating support tickets. This document will show how to create a new support ticket using Slack, which can be used in the public #support channel, or a private channel created for your orginization. Kubecost's Slack is publicly available and can be joined by following [this link](https://kubecost.com/join-slack).
The Kubecost support team offers several channels for creating support tickets. This document will show how to create a new support ticket using Slack, which can be used in the public #support channel, or a private channel created for your organization. Kubecost's Slack is publicly available and can be joined by following [this link](https://kubecost.com/join-slack).

1. Create a new Slack message thread in the Slack channel.

Expand Down
Loading