|
|
@ -106,18 +106,24 @@ const defaultValues = `# Default values for %s.
|
|
|
|
# This is a YAML-formatted file.
|
|
|
|
# This is a YAML-formatted file.
|
|
|
|
# Declare variables to be passed into your templates.
|
|
|
|
# Declare variables to be passed into your templates.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# This will set the replicaset count more information can be found here: https://kubernetes.io/docs/concepts/workloads/controllers/replicaset/
|
|
|
|
replicaCount: 1
|
|
|
|
replicaCount: 1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# This sets the container image more information can be found here: https://kubernetes.io/docs/concepts/containers/images/
|
|
|
|
image:
|
|
|
|
image:
|
|
|
|
repository: nginx
|
|
|
|
repository: nginx
|
|
|
|
|
|
|
|
# This sets the pull policy for images.
|
|
|
|
pullPolicy: IfNotPresent
|
|
|
|
pullPolicy: IfNotPresent
|
|
|
|
# Overrides the image tag whose default is the chart appVersion.
|
|
|
|
# Overrides the image tag whose default is the chart appVersion.
|
|
|
|
tag: ""
|
|
|
|
tag: ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# This is for the secretes for pulling an image from a private repository more information can be found here: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
|
|
|
|
imagePullSecrets: []
|
|
|
|
imagePullSecrets: []
|
|
|
|
|
|
|
|
# This is to override the chart name.
|
|
|
|
nameOverride: ""
|
|
|
|
nameOverride: ""
|
|
|
|
fullnameOverride: ""
|
|
|
|
fullnameOverride: ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#This section builds out the service account more information can be found here: https://kubernetes.io/docs/concepts/security/service-accounts/
|
|
|
|
serviceAccount:
|
|
|
|
serviceAccount:
|
|
|
|
# Specifies whether a service account should be created
|
|
|
|
# Specifies whether a service account should be created
|
|
|
|
create: true
|
|
|
|
create: true
|
|
|
@ -129,7 +135,11 @@ serviceAccount:
|
|
|
|
# If not set and create is true, a name is generated using the fullname template
|
|
|
|
# If not set and create is true, a name is generated using the fullname template
|
|
|
|
name: ""
|
|
|
|
name: ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# This is for setting Kubernetes Annotations to a Pod.
|
|
|
|
|
|
|
|
# For more information checkout: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
|
|
|
|
podAnnotations: {}
|
|
|
|
podAnnotations: {}
|
|
|
|
|
|
|
|
# This is for setting Kubernetes Labels to a Pod.
|
|
|
|
|
|
|
|
# For more information checkout: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
|
|
|
|
podLabels: {}
|
|
|
|
podLabels: {}
|
|
|
|
|
|
|
|
|
|
|
|
podSecurityContext: {}
|
|
|
|
podSecurityContext: {}
|
|
|
@ -143,10 +153,14 @@ securityContext: {}
|
|
|
|
# runAsNonRoot: true
|
|
|
|
# runAsNonRoot: true
|
|
|
|
# runAsUser: 1000
|
|
|
|
# runAsUser: 1000
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# This is for setting up a service more information can be found here: https://kubernetes.io/docs/concepts/services-networking/service/
|
|
|
|
service:
|
|
|
|
service:
|
|
|
|
|
|
|
|
# This sets the service type more information can be found here: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types
|
|
|
|
type: ClusterIP
|
|
|
|
type: ClusterIP
|
|
|
|
|
|
|
|
# This sets the ports more information can be found here: https://kubernetes.io/docs/concepts/services-networking/service/#field-spec-ports
|
|
|
|
port: 80
|
|
|
|
port: 80
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# This block is for setting up the ingress for more information can be found here: https://kubernetes.io/docs/concepts/services-networking/ingress/
|
|
|
|
ingress:
|
|
|
|
ingress:
|
|
|
|
enabled: false
|
|
|
|
enabled: false
|
|
|
|
className: ""
|
|
|
|
className: ""
|
|
|
@ -175,6 +189,7 @@ resources: {}
|
|
|
|
# cpu: 100m
|
|
|
|
# cpu: 100m
|
|
|
|
# memory: 128Mi
|
|
|
|
# memory: 128Mi
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# This is to setup the liveness and readiness probes more infomation can be found here: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/
|
|
|
|
livenessProbe:
|
|
|
|
livenessProbe:
|
|
|
|
httpGet:
|
|
|
|
httpGet:
|
|
|
|
path: /
|
|
|
|
path: /
|
|
|
@ -184,6 +199,7 @@ readinessProbe:
|
|
|
|
path: /
|
|
|
|
path: /
|
|
|
|
port: http
|
|
|
|
port: http
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#This section is for setting up autoscaling more information can be found here: https://kubernetes.io/docs/concepts/workloads/autoscaling/
|
|
|
|
autoscaling:
|
|
|
|
autoscaling:
|
|
|
|
enabled: false
|
|
|
|
enabled: false
|
|
|
|
minReplicas: 1
|
|
|
|
minReplicas: 1
|
|
|
|