wiki/structured/assets/challenges.suse-cloud-native-fundamentals-scholarship-program/helm-nginx/values.yaml
Gabriel Arazas 74fc53bb6a Update SUSE Cloud Native Computing course
Hoorah! Finally made it through the course! On the other hand, I also
updated the `concat-asset-folder` function to accept multiple arguments
representing the directory hierarchy instead of a separator.
2021-07-07 16:34:13 +08:00

27 lines
564 B
YAML

# namespace refers to the Kubernetes namespace resource.
namespace:
name: demo
# replicaCount is the number of instances to run in a replica set.
replicaCount: 3
# image contains the detail of the container image to be used
image:
repository: nginx
tag: alpine
pullPolicy: IfNotPresent
# resources dictate the amount to spend
resources:
cpu: 50m
memory: 256Mi
# service configures the Kubernetes service resource
service:
type: ClusterIP
port: 8111
# configmap configures the Kubernetes configmap resource
configmap:
data: "version: alpine"