All Projects → rancher → Charts

rancher / Charts

Labels

Projects that are alternatives of or similar to Charts

Svg Sprite
SVG sprites & stacks galore — A low-level Node.js module that takes a bunch of SVG files, optimizes them and bakes them into SVG sprites of several types along with suitable stylesheet resources (e.g. CSS, Sass, LESS, Stylus, etc.)
Stars: ✭ 1,648 (+700%)
Mutual labels:  mustache
Amundsen
Amundsen is a metadata driven application for improving the productivity of data analysts, data scientists and engineers when interacting with data.
Stars: ✭ 2,901 (+1308.25%)
Mutual labels:  mustache
Swagger Codegen Generators
Stars: ✭ 184 (-10.68%)
Mutual labels:  mustache
K8s
Kubernetes Helm Charts for the ORY ecosystem.
Stars: ✭ 127 (-38.35%)
Mutual labels:  mustache
Helm Charts
Helm charts for Kubernetes curated by Kiwigrid
Stars: ✭ 151 (-26.7%)
Mutual labels:  mustache
Apacheexpress
Reliable Server Side Swift ✭ Make Apache great again!
Stars: ✭ 170 (-17.48%)
Mutual labels:  mustache
Project Init
Project templates in rust
Stars: ✭ 104 (-49.51%)
Mutual labels:  mustache
Milk
Milk is Mustache in CoffeeScript -- great with your browser or NodeJS!
Stars: ✭ 192 (-6.8%)
Mutual labels:  mustache
Helm Charts
Jenkins community Helm charts
Stars: ✭ 154 (-25.24%)
Mutual labels:  mustache
Pihole Kubernetes
PiHole on kubernetes
Stars: ✭ 180 (-12.62%)
Mutual labels:  mustache
Charts
Helm chart repository
Stars: ✭ 128 (-37.86%)
Mutual labels:  mustache
Bbmustache
Binary pattern match Based Mustache template engine for Erlang/OTP.
Stars: ✭ 141 (-31.55%)
Mutual labels:  mustache
Ramhorns
Fast Mustache template engine implementation in pure Rust.
Stars: ✭ 172 (-16.5%)
Mutual labels:  mustache
Cost Analyzer Helm Chart
Kubecost helm chart
Stars: ✭ 126 (-38.83%)
Mutual labels:  mustache
Swagger Codegen
swagger-codegen contains a template-driven engine to generate documentation, API clients and server stubs in different languages by parsing your OpenAPI / Swagger definition.
Stars: ✭ 13,859 (+6627.67%)
Mutual labels:  mustache
Helmchart
Helm chart for kubernetes deployments
Stars: ✭ 104 (-49.51%)
Mutual labels:  mustache
Spring Boot Email Tools
A set of services and tools for sending emails in a Spring Boot 1.5.x application using a Template Engine
Stars: ✭ 164 (-20.39%)
Mutual labels:  mustache
Gluebert
gluebert.js is a tiny helper lazy loading DOM Elements, StyleSheets and JavaScript files using dynamic import and code splitting
Stars: ✭ 194 (-5.83%)
Mutual labels:  mustache
Micromustache
Ⓜ An extremely fast and small sub-implementation of the {{mustache}} template engine for JavaScript
Stars: ✭ 186 (-9.71%)
Mutual labels:  mustache
Inlets Pro
Secure TCP and HTTP tunnels that work anywhere
Stars: ✭ 179 (-13.11%)
Mutual labels:  mustache

Rancher Catalog

A curated collection of Rancher 2.0 enhanced Helm charts. To see how catalogs are added and used in Rancher 2.0 take a look at the docs page.

Rancher Chart Structure

A Rancher chart repository differs slightly in directory structure from upstream repos in that it includes an app version directory. Though Rancher can use native Helm repositories as well.

A Rancher chart also has two additional files an app-readme.md file that provides a high level overview display in the Rancher 2.0 UI and a questions.yml file defining questions to prompt the user with.

charts/wordpress/<app version>/
  app-readme.md            # Rancher Specific: Readme file for display in Rancher 2.0 UI
  charts/                  # Directory containing dependency charts
  Chart.yaml               # Required Helm chart information file
  questions.yml            # Rancher Specific: File containing questions for Rancher 2.0 UI
  README.md                # Optional: Helm Readme file (will be rendered in Rancher 2.0 UI as well)
  requirements.yaml        # Optional YAML file listing dependencies for the chart
  templates/               # A directory of templates that, when combined with values.yml will generate K8s YAML
  values.yaml              # The default configuration values for this chart

See the upstream Helm chart developer reference for a complete walk through of developing charts.

To convert an upstream chart to take advantage of Rancher's enhanced UX, first create an app-readme.md file in the root of your chart.

$ cat ./app-readme.md

# Wordpress ROCKS!

Then add a questions.yml file to prompt the user for something.

categories:
- Blog
- CMS
questions:
- variable: persistence.enabled
  default: "false"
  description: "Enable persistent volume for WordPress"
  type: boolean
  required: true
  label: WordPress Persistent Volume Enabled
  show_subquestion_if: true
  group: "WordPress Settings"
  subquestions:
  - variable: persistence.size
    default: "10Gi"
    description: "WordPress Persistent Volume Size"
    type: string
    label: WordPress Volume Size
  - variable: persistence.storageClass
    default: ""
    description: "If undefined or null, uses the default StorageClass. Default to null"
    type: storageclass
    label: Default StorageClass for WordPress

The above will prompt the user with a true / false radio button in the UI for enabling persistent storage. If the user choses to enable persistent storage they will be prompted for a storage class and volume size.

The above file also provides a list of categories that this chart fits into. This helps users navigate and filtering when browsing the catalog UI.

Question Variable Reference

Variable Type Required Description
variable string true define the variable name specified in the values.yamlfile, using foo.bar for nested object.
label string true define the UI label.
description string false specify the description of the variable.
type string false default to string if not specified (current supported types are string, multiline, boolean, int, enum, password, storageclass, hostname, pvc, and secret).
required bool false define if the variable is required or not (true | false)
default string false specify the default value.
group string false group questions by input value.
min_length int false min character length.
max_length int false max character length.
min int false min integer length.
max int false max integer length.
options []string false specify the options when the vriable type is enum, for example: options:
- "ClusterIP"
- "NodePort"
- "LoadBalancer"
valid_chars string false regular expression for input chars validation.
invalid_chars string false regular expression for invalid input chars validation.
subquestions []subquestion false add an array of subquestions.
show_if string false show current variable if conditional variable is true, for example show_if: "serviceType=Nodeport"
show_subquestion_if string false show subquestions if is true or equal to one of the options. for example show_subquestion_if: "true"

subquestions: subquestions[] cannot contain subquestions or show_subquestions_if keys, but all other keys in the above table are supported.

License

Copyright (c) 2018 Rancher Labs, Inc.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].