diff options
| author | Max Resnick <max@ofmax.li> | 2024-07-12 22:23:32 -0700 |
|---|---|---|
| committer | Max Resnick <max@ofmax.li> | 2024-07-12 22:23:32 -0700 |
| commit | 25e32d1e667b17b525c70fe8edc93385c838e176 (patch) | |
| tree | fff28f4f308f91c5f126fb92c60b381b4dae0c9f /manifests/deploy.yaml | |
| parent | f97b5870cb3be0303e539994a252f7f41324facd (diff) | |
| download | go-git-server-25e32d1e667b17b525c70fe8edc93385c838e176.tar.gz | |
fix: update labels
Diffstat (limited to 'manifests/deploy.yaml')
| -rw-r--r-- | manifests/deploy.yaml | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/manifests/deploy.yaml b/manifests/deploy.yaml deleted file mode 100644 index f80592d..0000000 --- a/manifests/deploy.yaml +++ /dev/null @@ -1,46 +0,0 @@ -apiVersion: apps/v1 -kind: Deployment -metadata: - annotations: - deployment.kubernetes.io/revision: "7" - labels: - app: go-git-server - name: go-git-server - namespace: default -spec: - progressDeadlineSeconds: 600 - replicas: 1 - revisionHistoryLimit: 10 - selector: - matchLabels: - app: go-git-server - strategy: - rollingUpdate: - maxSurge: 25% - maxUnavailable: 25% - type: RollingUpdate - template: - metadata: - creationTimestamp: null - labels: - app: go-git-server - spec: - containers: - - image: public.ecr.aws/s0f9o2k5/go-git-server:latest - imagePullPolicy: Always - name: go-git-server - terminationMessagePath: /dev/termination-log - terminationMessagePolicy: File - volumeMounts: - - mountPath: /tokens - name: go-git-server-tokens - readOnly: true - dnsPolicy: ClusterFirst - restartPolicy: Always - schedulerName: default-scheduler - terminationGracePeriodSeconds: 30 - volumes: - - name: go-git-server-tokens - secret: - defaultMode: 420 - secretName: go-git-server |