Skip to content

Commit e72978e

Browse files
committed
Updating the inline documentation.
Signed-off-by: Robert Sirchia <[email protected]>
1 parent abdbe1e commit e72978e

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

pkg/chartutil/create.go

+16
Original file line numberDiff line numberDiff line change
@@ -106,18 +106,24 @@ const defaultValues = `# Default values for %s.
106106
# This is a YAML-formatted file.
107107
# Declare variables to be passed into your templates.
108108
109+
# This will set the replicaset count more information can be found here: https://kubernetes.io/docs/concepts/workloads/controllers/replicaset/
109110
replicaCount: 1
110111
112+
# This sets the container image more information can be found here: https://kubernetes.io/docs/concepts/containers/images/
111113
image:
112114
repository: nginx
115+
# This sets the pull policy for images.
113116
pullPolicy: IfNotPresent
114117
# Overrides the image tag whose default is the chart appVersion.
115118
tag: ""
116119
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/
117121
imagePullSecrets: []
122+
# This is to override the chart name.
118123
nameOverride: ""
119124
fullnameOverride: ""
120125
126+
#This section builds out the service account more information can be found here: https://kubernetes.io/docs/concepts/security/service-accounts/
121127
serviceAccount:
122128
# Specifies whether a service account should be created
123129
create: true
@@ -129,7 +135,11 @@ serviceAccount:
129135
# If not set and create is true, a name is generated using the fullname template
130136
name: ""
131137
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/
132140
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/
133143
podLabels: {}
134144
135145
podSecurityContext: {}
@@ -143,10 +153,14 @@ securityContext: {}
143153
# runAsNonRoot: true
144154
# runAsUser: 1000
145155
156+
# This is for setting up a service more information can be found here: https://kubernetes.io/docs/concepts/services-networking/service/
146157
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
147159
type: ClusterIP
160+
# This sets the ports more information can be found here: https://kubernetes.io/docs/concepts/services-networking/service/#field-spec-ports
148161
port: 80
149162
163+
# This block is for setting up the ingress for more information can be found here: https://kubernetes.io/docs/concepts/services-networking/ingress/
150164
ingress:
151165
enabled: false
152166
className: ""
@@ -175,6 +189,7 @@ resources: {}
175189
# cpu: 100m
176190
# memory: 128Mi
177191
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/
178193
livenessProbe:
179194
httpGet:
180195
path: /
@@ -184,6 +199,7 @@ readinessProbe:
184199
path: /
185200
port: http
186201
202+
#This section is for setting up autoscaling more information can be found here: https://kubernetes.io/docs/concepts/workloads/autoscaling/
187203
autoscaling:
188204
enabled: false
189205
minReplicas: 1

0 commit comments

Comments
 (0)