From 1b47046a96cb6dd344cbaf7c215420a829e6d4df Mon Sep 17 00:00:00 2001 From: Max Resnick Date: Sun, 15 Jun 2025 22:10:32 -0700 Subject: feat: refactor of kustomization.yml --- manifests/cgit/cgit-deploy.yaml | 50 ----------------------------------------- 1 file changed, 50 deletions(-) delete mode 100644 manifests/cgit/cgit-deploy.yaml (limited to 'manifests/cgit/cgit-deploy.yaml') diff --git a/manifests/cgit/cgit-deploy.yaml b/manifests/cgit/cgit-deploy.yaml deleted file mode 100644 index b899709..0000000 --- a/manifests/cgit/cgit-deploy.yaml +++ /dev/null @@ -1,50 +0,0 @@ -apiVersion: apps/v1 -kind: Deployment -metadata: - name: cgit -spec: - replicas: 1 - selector: - matchLabels: - app.kubernetes.io/name: cgit - template: - metadata: - labels: - app.kubernetes.io/name: cgit - spec: - containers: - - env: - - name: CGIT_HOSTNAME - value: git.localhost - - name: CGIT_PORT - value: "8080" - - name: CGIT_CONFIG - value: /opt/etc/cgitrc - image: public.ecr.aws/s0f9o2k5/cgit:v0.0.8 - securityContext: - runAsUser: 0 - runAsGroup: 1000 - imagePullPolicy: Always - name: cgit - ports: - - containerPort: 8080 - name: http - protocol: TCP - volumeMounts: - - mountPath: /opt/repos - name: go-git-storage - readOnly: false - - mountPath: /opt/etc - name: cgitrc - readOnly: true - imagePullSecrets: - - name: regcred - serviceAccountName: cgit - volumes: - - name: go-git-storage - persistentVolumeClaim: - claimName: go-git-storage - - name: cgitrc - configMap: - defaultMode: 420 - name: cgitrc -- cgit v1.2.3