Skip to content

Instantly share code, notes, and snippets.

@sjwaight
Last active April 20, 2021 10:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sjwaight/109bf8329f9d547bec200f244274d062 to your computer and use it in GitHub Desktop.
Save sjwaight/109bf8329f9d547bec200f244274d062 to your computer and use it in GitHub Desktop.
Simple Helm Chart values file for MVC Music Store ASP.NET Web Application
# Default values for mvcmusicstoreweb.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
replicaCount: 1
image:
repository: your_repo.azurecr.io/mvcmusicstoreweb
pullPolicy: Always
# Overrides the image tag whose default is the chart appVersion.
tag: ""
imagePullSecrets: []
nameOverride: "mvcmusicstore"
fullnameOverride: "mvcmusicstore"
serviceAccount:
# Specifies whether a service account should be created
create: true
# Annotations to add to the service account
annotations: {}
# The name of the service account to use.
# If not set and create is true, a name is generated using the fullname template
name: ""
podAnnotations: {}
podSecurityContext: {}
# fsGroup: 2000
securityContext: {}
# capabilities:
# drop:
# - ALL
# readOnlyRootFilesystem: true
# runAsNonRoot: true
# runAsUser: 1000
service:
type: LoadBalancer
port: 80
ingress:
enabled: false
annotations: {}
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
hosts:
- host: chart-example.local
paths:
- path: /
backend:
serviceName: chart-example.local
servicePort: 80
tls: []
# - secretName: chart-example-tls
# hosts:
# - chart-example.local
resources:
requests:
cpu: 512m
memory: 256Mi
autoscaling:
enabled: false
minReplicas: 1
maxReplicas: 10
nodeSelector:
kubernetes.io/os: windows
tolerations: []
affinity: {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment