This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# _config.yaml | |
title: Our example Helm chart repo | |
description: A chart repo for storing charts. | |
theme: minima | |
url: "https://helm-repo-example.jacobtomlinson.dev/" | |
repo_name: helm-repo-example | |
exclude: | |
- Gemfile | |
- Gemfile.lock |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Gemfile | |
source "https://rubygems.org" | |
gem "jekyll", "~> 3.8.5" | |
gem "minima", "~> 2.0" | |
group :jekyll_plugins do | |
gem "jekyll-feed", "~> 0.6" | |
end | |
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby] | |
gem "wdm", "~> 0.1.0" if Gem.win_platform? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# chartpress.yaml | |
charts: | |
- name: example | |
repo: # This should be your GitHub repo name and the url where our GitHub Pages site is being published | |
git: jacobtomlinson/helm-repo-example | |
published: https://helm-repo-example.jacobtomlinson.dev/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
# This little section with the `---` fences is called frontmatter. | |
# Don't worry about this for now, it'll become clear when we get on to Jekyll. | |
--- | |
# Hello GitHub Pages |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .travis.yml | |
sudo: required | |
language: python | |
python: | |
- "3.6" | |
install: | |
- curl https://raw.githubusercontent.com/kubernetes/helm/master/scripts/get | bash | |
- helm init --client-only |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# example/Chart.yaml | |
apiVersion: v1 | |
appVersion: "1.0" | |
description: A Helm chart for Kubernetes | |
name: example | |
version: 0.1.0 | |
# Let's use the Kubernetes logo from wikipedia for our example chart. You will want to use your own logo in yours. | |
icon: https://upload.wikimedia.org/wikipedia/commons/thumb/3/39/Kubernetes_logo_without_workmark.svg/1280px-Kubernetes_logo_without_workmark.svg.png |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.