Code Monkey home page Code Monkey logo

helm-starter's Introduction

helm-starter

Helm Starter

Install

git clone https://github.com/plimble/helm-starter.git $(helm home)/starters/default

Usage

helm create -p default myChart

Default Values

# Default values for helm-starter.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.

# Override chart name
nameOverride: ''

replicaCount: 1

image:
  repository: nginx
  tag: stable
  pullPolicy: Always

alwaysUpdate: false

annotations: {}

podAnnotations: {}

imagePullSecrets: []
  # - name: gitlab-registry-credential

args: []
  # - /bin/sh
  # - -c

env: []
  # - name: ENV1
  #   value: XXXXX
  # - name: ENV2
  #   value: XXXXXX

envFrom: []
  # from create configMap or secret
  # - name: env-config
  #   type: configMapRef
  # from external
  # - name: env-secrets
  #   type: secretRef
  #   external: true

configMaps: []
  # create configMap and mount
  # - name: "config"
  #   mountPath: "/firebase"
  #   data:
  #     firebaseCredentials.json : |-
  #       {"test": "test"}
  # mount from external configMap
  # - name: "config"
  #   mountPath: "/firebase"
  #   configName: config-from-outside
  # create configMap for envFrom
  # - name: "config"
  #   data:
  #     ENV_KEY: 123

secrets: []
  # create secret and mount
  # - name: "secret-tls"
  #   mountPath: "/tls"
  #   type: "kubernetes.io/tls" / "Opaque"
  #   data:
  #     tls.crt: '132'
  #     tls.key: '132'
  # mount from external secret
  # - name: "secret"
  #   mountPath: "/tls"
  #   secretName: secret-from-outside
  # create secret for envFrom
  # - name: "config"
  #   data:
  #     ENV_KEY: 123

resources: {}
  # We usually recommend not to specify default resources and to leave this as a conscious
  # choice for the user. This also increases chances charts run on environments with little
  # resources, such as Minikube. If you do want to specify resources, uncomment the following
  # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
  # limits:
  #  cpu: 100m
  #  memory: 128Mi
  # requests:
  #  cpu: 100m
  #  memory: 128Mi

# Check container is alive and healthy
# If not, the kubelet kills the Container and restarts it.
livenessProbe: {}
  # httpGet:
  #   path: /
  #   port: 80 or port name
  # initialDelaySeconds: 5
  # periodSeconds: 10
  # failureThreshold: 3

# Ensure the traffic does not reach a container which is not ready for it,
readinessProbe: {}
  # tcpSocket:
    # port: 8080
  # initialDelaySeconds: 5
  # periodSeconds: 10
  # failureThreshold: 3

nodeSelector: {}

tolerations: []

affinity: {}

service:
  enabled: false
  annotations: {}
  type: ClusterIP
  ports: []
    # - name: "http"
    #   port: 80
    #   targetPort: 8080
    # - name: "https"
    #   port: 443

ingress:
  enabled: false
  annotations: {}
    # kubernetes.io/ingress.class: nginx
    # kubernetes.io/tls-acme: "true"
  hosts: []
    # - host: chart-example.local
    #   path: /
    #   servicePort: 8080
  tls: []
  #  - secretName: chart-example-tls
  #    hosts:
  #      - chart-example.local

helm-starter's People

Contributors

witooh avatar

Stargazers

Alik Khilazhev avatar Matías Beccaria avatar  avatar

Watchers

James Cloos avatar  avatar Xier avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.