You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Declare variables to be passed into your templates.
108
108
109
+
# This will set the replicaset count more information can be found here: https://kubernetes.io/docs/concepts/workloads/controllers/replicaset/
109
110
replicaCount: 1
110
111
112
+
# This sets the container image more information can be found here: https://kubernetes.io/docs/concepts/containers/images/
111
113
image:
112
114
repository: nginx
115
+
# This sets the pull policy for images.
113
116
pullPolicy: IfNotPresent
114
117
# Overrides the image tag whose default is the chart appVersion.
115
118
tag: ""
116
119
120
+
# 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/
117
121
imagePullSecrets: []
122
+
# This is to override the chart name.
118
123
nameOverride: ""
119
124
fullnameOverride: ""
120
125
126
+
#This section builds out the service account more information can be found here: https://kubernetes.io/docs/concepts/security/service-accounts/
121
127
serviceAccount:
122
128
# Specifies whether a service account should be created
123
129
create: true
@@ -129,7 +135,11 @@ serviceAccount:
129
135
# If not set and create is true, a name is generated using the fullname template
130
136
name: ""
131
137
138
+
# This is for setting Kubernetes Annotations to a Pod.
139
+
# For more information checkout: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
132
140
podAnnotations: {}
141
+
# This is for setting Kubernetes Labels to a Pod.
142
+
# For more information checkout: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
133
143
podLabels: {}
134
144
135
145
podSecurityContext: {}
@@ -143,10 +153,14 @@ securityContext: {}
143
153
# runAsNonRoot: true
144
154
# runAsUser: 1000
145
155
156
+
# This is for setting up a service more information can be found here: https://kubernetes.io/docs/concepts/services-networking/service/
146
157
service:
158
+
# This sets the service type more information can be found here: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types
147
159
type: ClusterIP
160
+
# This sets the ports more information can be found here: https://kubernetes.io/docs/concepts/services-networking/service/#field-spec-ports
148
161
port: 80
149
162
163
+
# This block is for setting up the ingress for more information can be found here: https://kubernetes.io/docs/concepts/services-networking/ingress/
150
164
ingress:
151
165
enabled: false
152
166
className: ""
@@ -175,6 +189,7 @@ resources: {}
175
189
# cpu: 100m
176
190
# memory: 128Mi
177
191
192
+
# 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/
178
193
livenessProbe:
179
194
httpGet:
180
195
path: /
@@ -184,6 +199,7 @@ readinessProbe:
184
199
path: /
185
200
port: http
186
201
202
+
#This section is for setting up autoscaling more information can be found here: https://kubernetes.io/docs/concepts/workloads/autoscaling/
0 commit comments