diff options
| author | Kevin J Hoerr <kjhoerr@protonmail.com> | 2021-09-09 14:57:55 -0400 |
|---|---|---|
| committer | Kevin J Hoerr <kjhoerr@protonmail.com> | 2021-09-09 14:57:55 -0400 |
| commit | 327d69b2fa273e6f708035db6f9f6df73ac07b0b (patch) | |
| tree | 2313b127d8ff10d49ce0ebbc962d24c2c42122e9 /kubernetes/deployment.yaml | |
| parent | 6f77a3c75f40b5327623ac99b1036b6e37c56480 (diff) | |
| download | submelon.dev-327d69b2fa273e6f708035db6f9f6df73ac07b0b.tar.gz submelon.dev-327d69b2fa273e6f708035db6f9f6df73ac07b0b.tar.bz2 submelon.dev-327d69b2fa273e6f708035db6f9f6df73ac07b0b.zip | |
Commit k8s deployment config
Diffstat (limited to 'kubernetes/deployment.yaml')
| -rw-r--r-- | kubernetes/deployment.yaml | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/kubernetes/deployment.yaml b/kubernetes/deployment.yaml new file mode 100644 index 0000000..39e20df --- /dev/null +++ b/kubernetes/deployment.yaml @@ -0,0 +1,49 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + creationTimestamp: "2021-04-22T06:20:12Z" + labels: + k8s-app: submelon-tech + name: submelon-tech + namespace: default + uid: 60ce2fb5-2fc4-4909-858c-fb76be2ecdf4 +spec: + progressDeadlineSeconds: 600 + replicas: 1 + revisionHistoryLimit: 10 + selector: + matchLabels: + k8s-app: submelon-tech + strategy: + rollingUpdate: + maxSurge: 25% + maxUnavailable: 25% + type: RollingUpdate + template: + metadata: + labels: + k8s-app: submelon-tech + name: submelon-tech + spec: + containers: + - image: registry.digitalocean.com/submelon-tech/submelon.tech:1.0.0 + imagePullPolicy: Always + name: submelon-tech + resources: + requests: + cpu: 250m + memory: 64Mi + limits: + memory: 128Mi + cpu: 500m + securityContext: + privileged: false + terminationMessagePath: /dev/termination-log + terminationMessagePolicy: File + dnsPolicy: ClusterFirst + imagePullSecrets: + - name: doreg + restartPolicy: Always + schedulerName: default-scheduler + securityContext: {} + terminationGracePeriodSeconds: 30 |
