|
@@ -0,0 +1,76 @@
|
|
|
|
|
+# Default values for testapp.
|
|
|
|
|
+# This is a YAML-formatted file.
|
|
|
|
|
+# Declare variables to be passed into your templates.
|
|
|
|
|
+
|
|
|
|
|
+replicaCount: 1
|
|
|
|
|
+
|
|
|
|
|
+image:
|
|
|
|
|
+ repository: 853492172208.dkr.ecr.us-west-2.amazonaws.com/wp-nginx-php
|
|
|
|
|
+ tag: latest
|
|
|
|
|
+ pullPolicy: IfNotPresent
|
|
|
|
|
+
|
|
|
|
|
+imagePullSecrets: []
|
|
|
|
|
+nameOverride: ""
|
|
|
|
|
+fullnameOverride: ""
|
|
|
|
|
+namespaceOverride: ""
|
|
|
|
|
+
|
|
|
|
|
+serviceAccount:
|
|
|
|
|
+ # Specifies whether a service account should be created
|
|
|
|
|
+ create: false
|
|
|
|
|
+ # The name of the service account to use.
|
|
|
|
|
+ # If not set and create is true, a name is generated using the fullname template
|
|
|
|
|
+ name:
|
|
|
|
|
+
|
|
|
|
|
+podSecurityContext: {}
|
|
|
|
|
+ # fsGroup: 2000
|
|
|
|
|
+
|
|
|
|
|
+securityContext: {}
|
|
|
|
|
+ # capabilities:
|
|
|
|
|
+ # drop:
|
|
|
|
|
+ # - ALL
|
|
|
|
|
+ # readOnlyRootFilesystem: true
|
|
|
|
|
+ # runAsNonRoot: true
|
|
|
|
|
+ # runAsUser: 1000
|
|
|
|
|
+storage:
|
|
|
|
|
+ create: true
|
|
|
|
|
+ accessMode: ReadWriteMany
|
|
|
|
|
+ size: 1Gi
|
|
|
|
|
+ class: efs-sc
|
|
|
|
|
+
|
|
|
|
|
+service:
|
|
|
|
|
+ port: 80
|
|
|
|
|
+ targetPort: 80
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ingress:
|
|
|
|
|
+ enabled: true
|
|
|
|
|
+ annotations:
|
|
|
|
|
+ kubernetes.io/ingress.class: nginx
|
|
|
|
|
+ nginx.ingress.kubernetes.io/backend-protocol: HTTP
|
|
|
|
|
+ cert-manager.io/cluster-issuer: letsencrypt-http
|
|
|
|
|
+ nginx.ingress.kubernetes.io/x-forwarded-proto: "https"
|
|
|
|
|
+ nginx.ingress.kubernetes.io/x-forwarded-port: "443"
|
|
|
|
|
+ nginx.ingress.kubernetes.io/ssl-redirect: "true"
|
|
|
|
|
+ nginx.ingress.kubernetes.io/proxy-body-size: 50m
|
|
|
|
|
+
|
|
|
|
|
+ domain: www.example.com
|
|
|
|
|
+ tls:
|
|
|
|
|
+ enabled: true
|
|
|
|
|
+
|
|
|
|
|
+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: 2000m
|
|
|
|
|
+ memory: 4096Mi
|
|
|
|
|
+ requests:
|
|
|
|
|
+ cpu: 1000m
|
|
|
|
|
+ memory: 2048Mi
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+# 调度控制
|
|
|
|
|
+nodeSelector: {}
|
|
|
|
|
+tolerations: []
|
|
|
|
|
+affinity: {}
|