You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
742 B
34 lines
742 B
# Default values for node projects.
|
|
# This is a YAML-formatted file.
|
|
# Declare variables to be passed into your templates.
|
|
replicaCount: 1
|
|
image:
|
|
repository: draft
|
|
tag: dev
|
|
pullPolicy: IfNotPresent
|
|
service:
|
|
name: argocd-example-apps
|
|
type: ClusterIP
|
|
externalPort: 80
|
|
internalPort: 8080
|
|
annotations:
|
|
fabric8.io/expose: "true"
|
|
fabric8.io/ingress.annotations: "kubernetes.io/ingress.class: nginx"
|
|
resources:
|
|
limits:
|
|
cpu: 400m
|
|
memory: 256Mi
|
|
requests:
|
|
cpu: 200m
|
|
memory: 128Mi
|
|
probePath: /
|
|
livenessProbe:
|
|
initialDelaySeconds: 60
|
|
periodSeconds: 10
|
|
successThreshold: 1
|
|
timeoutSeconds: 1
|
|
readinessProbe:
|
|
periodSeconds: 10
|
|
successThreshold: 1
|
|
timeoutSeconds: 1
|
|
terminationGracePeriodSeconds: 10
|
|
|