| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- # Default values for docker-template.
- # This is a YAML-formatted file.
- # Declare variables to be passed into your templates.
- auto_deploy: true
- replicaCount: 1
- terminationGracePeriodSeconds: 30
- image:
- repository: porter1/porter-dashboard
- pullPolicy: Always
- # Overrides the image tag whose default is the chart appVersion.
- tag: latest
- service:
- port: 8081
- ingress:
- enabled: false
- hosts: []
- porter_hosts: []
- provider: aws
- custom_domain: false
- custom_paths: []
- rewriteCustomPathsEnabled: true
- annotations: {}
- wildcard: false
- tls: true
- useDefaultIngressTLSSecret: false
- container:
- port: 8081
- command: npm
- args: "start"
- env:
- normal:
- lifecycle:
- postStart:
- preStop:
- resources:
- requests:
- cpu: 1000m
- memory: 1024Mi
- health:
- livenessProbe:
- enabled: false
- path: "/livez"
- scheme: "HTTP"
- initialDelaySeconds: 0
- periodSeconds: 5
- timeoutSeconds: 1
- successThreshold: 1
- failureThreshold: 3
- auth:
- enabled: false
- username: ""
- password: ""
- livenessCommand:
- enabled: false
- command: "ls -l"
- initialDelaySeconds: 5
- periodSeconds: 5
- timeoutSeconds: 1
- successThreshold: 1
- failureThreshold: 3
- readinessProbe:
- enabled: false
- path: "/readyz"
- scheme: "HTTP"
- initialDelaySeconds: 0
- periodSeconds: 5
- timeoutSeconds: 1
- successThreshold: 1
- failureThreshold: 3
- auth:
- enabled: false
- username: ""
- password: ""
- startupProbe:
- enabled: false
- path: "/startupz"
- scheme: "HTTP"
- failureThreshold: 3
- periodSeconds: 5
- timeoutSeconds: 1
- auth:
- enabled: false
- username: ""
- password: ""
-
- emptyDir:
- enabled: false
- mountPath: /local
- podSecurityContext:
- runAsNonRoot: false
- runAsUser: 0
|