Created
April 17, 2021 15:03
-
-
Save mmontes11/4458dc2fc862e0b9c93afea6a552eca3 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
| nameOverride: "" | |
| fullnameOverride: "" | |
| image: | |
| repository: gotwaygateway/gotway | |
| pullPolicy: IfNotPresent | |
| tag: "v0.0.2" | |
| service: | |
| type: NodePort | |
| interalPort: 443 | |
| externalPort: 30000 | |
| tlsEnabled: true | |
| livenessProbe: | |
| initialDelaySeconds: 10 | |
| timeoutSeconds: 3 | |
| periodSeconds: 15 | |
| readinessProbe: | |
| initialDelaySeconds: 10 | |
| timeoutSeconds: 3 | |
| periodSeconds: 15 | |
| ingressRoute: | |
| enabled: true | |
| host: api.gotway.duckdns.org | |
| entrypoints: | |
| - websecure | |
| env: production | |
| databaseType: redis | |
| redisConfig: | |
| address: gotway-redis:6379 | |
| db: 0 | |
| healthCheck: | |
| intervalSeconds: 10 | |
| timeoutSeconds: 5 | |
| resources: | |
| requests: | |
| cpu: 100m | |
| memory: "128Mi" | |
| limits: | |
| cpu: 300m | |
| memory: "512Mi" | |
| replicaCount: 1 | |
| autoscaling: | |
| enabled: true | |
| minReplicas: 1 | |
| maxReplicas: 4 | |
| targetCPUUtilizationPercentage: 50 | |
| targetMemoryUtilizationPercentage: 50 | |
| nodeSelector: {} | |
| # dependencies | |
| redis: | |
| prometheus-redis-exporter: | |
| redisAddress: redis://gotway-redis:6379 | |
| serviceMonitor: | |
| labels: | |
| release: monitoring |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment