add rancher
This commit is contained in:
17
helm/rancher/Chart.yaml
Normal file
17
helm/rancher/Chart.yaml
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
apiVersion: v2
|
||||||
|
name: rancher
|
||||||
|
description: A Helm chart for deploying Rancher
|
||||||
|
type: application
|
||||||
|
version: 2.6.0
|
||||||
|
appVersion: "2.6.0"
|
||||||
|
icon: https://rancher.com/assets/img/rancher-logo.svg
|
||||||
|
keywords:
|
||||||
|
- rancher
|
||||||
|
- kubernetes
|
||||||
|
- management
|
||||||
|
- container
|
||||||
|
maintainers:
|
||||||
|
- name: HomeJacob
|
||||||
|
- email: homejacob@darkstars.me
|
||||||
|
sources:
|
||||||
|
- https://github.com/rancher/rancher
|
||||||
51
helm/rancher/values.yaml
Normal file
51
helm/rancher/values.yaml
Normal file
@@ -0,0 +1,51 @@
|
|||||||
|
replicaCount: 1
|
||||||
|
|
||||||
|
image:
|
||||||
|
repository: rancher/rancher
|
||||||
|
tag: "v2.6.0"
|
||||||
|
pullPolicy: IfNotPresent
|
||||||
|
|
||||||
|
service:
|
||||||
|
enabled: true
|
||||||
|
type: LoadBalancer
|
||||||
|
port: 80
|
||||||
|
targetPort: 80
|
||||||
|
annotations: {}
|
||||||
|
|
||||||
|
ingress:
|
||||||
|
enabled: true
|
||||||
|
hosts:
|
||||||
|
- host: rancher.darkstars.local
|
||||||
|
paths:
|
||||||
|
- /
|
||||||
|
tls:
|
||||||
|
- secretName: rancher-tls
|
||||||
|
hosts:
|
||||||
|
- rancher.darkstars.local
|
||||||
|
|
||||||
|
resources:
|
||||||
|
limits:
|
||||||
|
cpu: 100m
|
||||||
|
memory: 512Mi
|
||||||
|
requests:
|
||||||
|
cpu: 100m
|
||||||
|
memory: 512Mi
|
||||||
|
|
||||||
|
nodeSelector: {}
|
||||||
|
|
||||||
|
tolerations: []
|
||||||
|
|
||||||
|
affinity: {}
|
||||||
|
|
||||||
|
extraEnv:
|
||||||
|
- name: CATTLE_BOOTSTRAP_PASSWORD
|
||||||
|
- valueFrom:
|
||||||
|
- secretKeyRef:
|
||||||
|
name: rancher-bootstrap-secret
|
||||||
|
key: password
|
||||||
|
|
||||||
|
persistence:
|
||||||
|
enabled: true
|
||||||
|
storageClass: "standard"
|
||||||
|
accessMode: ReadWriteOnce
|
||||||
|
size: 10Gi
|
||||||
Reference in New Issue
Block a user