Created
July 11, 2019 16:37
-
-
Save gschanuel/f2158ae93e89aad30e534d7d8f0e7e12 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Default values for helloworld. | |
# This is a YAML-formatted file. | |
# Declare variables to be passed into your templates. | |
replicaCount: 2 | |
image: | |
repository: k8s.gcr.io/echoserver | |
tag: "1.10" | |
pullPolicy: IfNotPresent | |
nameOverride: "" | |
fullnameOverride: "" | |
service: | |
type: ClusterIP | |
port: 8080 | |
ingress: | |
enabled: true | |
annotations: | |
kubernetes.io/ingress.class: "haproxy" | |
kubernetes.io/balance-algorithm: url_param teste | |
certmanager.k8s.io/cluster-issuer: letsencrypt-production | |
certmanager.k8s.io/acme-challenge-type: dns01 | |
certmanager.k8s.io/acme-dns01-provider: domain-ns-external-view | |
path: / | |
hosts: | |
- lb-test.mydomain.com | |
tls: | |
- hosts: | |
- lb-test.mydomain.com | |
secretName: lb-test-tls | |
resources: {} | |
# We usually recommend not to specify default resources and to leave this as a conscious | |
# choice for the user. This also increases chances charts run on environments with little | |
# resources, such as Minikube. If you do want to specify resources, uncomment the following | |
# lines, adjust them as necessary, and remove the curly braces after 'resources:'. | |
# limits: | |
# cpu: 100m | |
# memory: 128Mi | |
# requests: | |
# cpu: 100m | |
# memory: 128Mi | |
nodeSelector: {} | |
tolerations: [] | |
affinity: {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment