The Helm website for docs, blog and project info.
Go to file
flynnduism b1a0e300b6 [v3 theme] restyle theme menus and scrolly funky states
Signed-off-by: flynnduism <flynnduism@gmail.com>
Signed-off-by: flynnduism <dev@ronan.design>
2020-03-04 09:49:04 -08:00
.netlify update netlify info 2019-02-15 14:06:18 -08:00
.vscode update v3 banner copy and links 2019-05-14 13:48:02 -07:00
content Merge pull request #519 from hickeyma/add-tested-releases-note 2020-03-03 16:31:37 +00:00
i18n Add i18n support to Helm site 2020-01-21 14:25:15 -08:00
themes/helm [v3 theme] restyle theme menus and scrolly funky states 2020-03-04 09:49:04 -08:00
.editorconfig Add .editorconfig file 2019-08-21 15:48:30 -07:00
.gitignore Add link checker 2020-02-27 14:58:18 -08:00
.htmltest.yml Add link checker 2020-02-27 14:58:18 -08:00
.nvmrc set node version for builds using nvm 2020-03-04 08:26:39 -08:00
CONTRIBUTING.md Fix GitHub spelling 2020-02-14 16:36:25 -08:00
LICENSE update gitignore 2018-03-08 14:44:36 +00:00
Makefile Add link checking to CI builds 2020-02-27 15:04:43 -08:00
OWNERS suggest expanding OWNERS 2020-01-02 15:01:12 -08:00
README.md fix(helm): update helm command docs to v3.0.3 2020-02-04 11:44:00 -08:00
code-of-conduct.md Helm code of conduct 2018-11-09 23:40:32 -05:00
config.toml changing the front end framework from foundation to bulma 2020-03-04 09:48:21 -08:00
netlify.toml Update Hugo version to 0.65.3 2020-02-27 15:18:12 -08:00
package.json [v3 theme] restyle theme menus and scrolly funky states 2020-03-04 09:49:04 -08:00
postcss.config.js Add PostCSS config 2019-08-21 15:54:40 -07:00
yarn.lock [v3 theme] switch underlying framework from foundation to bulma 2020-03-04 08:48:56 -08:00

README.md

github-banner-helm-helmwww

This is where you'll find all of the assets that make up helm.sh, the website for the Helm project. If you'll looking to edit docs, report a website bug or write a new blog post, you've come to the right place!

Development

Helm.sh is a simple Hugo static site, built with a custom theme. To run the website locally, you'll need to first install Hugo and any dependencies.

brew install hugo
yarn install

You can then compile and run the site locally:

hugo serve

Deployment Netlify Status

Changes are automatically deployed to Netlify when merged to master. Build logs can be found here.


Contributing

Anyone can submit a PR to edit Helm.sh. We require commits be signed - please refer to the contributing guide.

Pull requests require maintainer approval before merge.

How to Edit The Helm Docs

Since the release of Helm 3, all project documentation is located in this repo under /content/en/docs/.

For earlier versions, see the dev-v2 branch of the main Helm repo here.

Updating the Helm CLI Reference Docs

The documentation for the list of Helm CLI Commands are exported from the main helm project repo and rendered here on the website as a reference.

To update these docs, you'll need to:

  1. Delete all plugins currently installed with helm plugin uninstall
  2. Navigate to content/en/docs/helm/
  3. Run helm docs --type markdown to generate the markdown docs files, replacing any prior markdown files
  4. Add back the YAML front-matter to each file that was changed
  5. Commit the changes and create a PR to update the website.

How to Write a Blog Post

Blog posts are created via pull requests. The following steps are used to add them:

  1. Add a new file to the content/en/blog/ directory whose name is the published date and the title. The files must be markdown formatted. See the existing titles for examples of the format
  2. Add the header meta-data to the file using this format (note the permalink structure). Recommended but optional fields are authorname which should be name(s); these are displayed verbatim. authorlink is the link used by authorname.
---
title: "A Fancy Title"
slug: "fancy-title"
authorname: "Captain Awesome"
authorlink: "https://example.com"
date: "yyyy-mm-dd"
---
  1. Add the content below the --- as Markdown. The title does not need to be included in this section
  2. Any images should be placed in the /content/en/blog/images/ directory. Images should be losslessly compressed to reduce their size. Tools, such as ImageOptim, can be used.
  3. To summarize the content on the blog index page, insert a <!--more--> break in your markdown. This will truncate the content with a Read More link.

Blog PRs require approval from the core Helm maintainers before merge.


Code of Conduct

Participation in the Helm community is governed by the Helm Code of Conduct.

Thank You!

We appreciate your contributions to our website and our documentation! 👏