# Source: gitea/templates/gitea/deployment.yaml apiVersion: apps/v1 kind: Deployment metadata: name: gitea annotations: labels: helm.sh/chart: gitea-10.1.4 app: gitea app.kubernetes.io/name: gitea app.kubernetes.io/instance: gitea app.kubernetes.io/version: "1.21.11" version: "1.21.11" app.kubernetes.io/managed-by: Helm spec: replicas: 1 strategy: type: RollingUpdate rollingUpdate: maxUnavailable: 0 maxSurge: 100% selector: matchLabels: app.kubernetes.io/name: gitea app.kubernetes.io/instance: gitea template: metadata: annotations: checksum/config: d717f60ade106d6c565601b0ad889768e36e11d1355dfa3556467d525646fab9 checksum/oauth_0: 8082487c20cf56dc3aff5b15ecf79483bc184c497ffb48237cf48c1a8757fcf2 labels: helm.sh/chart: gitea-10.1.4 app: gitea app.kubernetes.io/name: gitea app.kubernetes.io/instance: gitea app.kubernetes.io/version: "1.21.11" version: "1.21.11" app.kubernetes.io/managed-by: Helm spec: securityContext: fsGroup: 1000 initContainers: - name: init-directories image: "gitea/gitea:1.21.11-rootless" imagePullPolicy: IfNotPresent command: ["/usr/sbin/init_directory_structure.sh"] env: - name: GITEA_APP_INI value: /data/gitea/conf/app.ini - name: GITEA_CUSTOM value: /data/gitea - name: GITEA_WORK_DIR value: /data - name: GITEA_TEMP value: /tmp/gitea volumeMounts: - name: init mountPath: /usr/sbin - name: temp mountPath: /tmp - name: data mountPath: /data securityContext: capabilities: add: - SYS_CHROOT resources: limits: {} requests: cpu: 100m memory: 128Mi - name: init-app-ini image: "gitea/gitea:1.21.11-rootless" imagePullPolicy: IfNotPresent command: ["/usr/sbin/config_environment.sh"] env: - name: GITEA_APP_INI value: /data/gitea/conf/app.ini - name: GITEA_CUSTOM value: /data/gitea - name: GITEA_WORK_DIR value: /data - name: GITEA_TEMP value: /tmp/gitea - name: ENV_TO_INI__DATABASE__LOG_SQL value: "false" - name: ENV_TO_INI__LOG__LEVEL value: Debug volumeMounts: - name: config mountPath: /usr/sbin - name: temp mountPath: /tmp - name: data mountPath: /data - name: inline-config-sources mountPath: /env-to-ini-mounts/inlines/ securityContext: capabilities: add: - SYS_CHROOT resources: limits: {} requests: cpu: 100m memory: 128Mi - name: configure-gitea image: "gitea/gitea:1.21.11-rootless" command: ["/usr/sbin/configure_gitea.sh"] imagePullPolicy: IfNotPresent securityContext: capabilities: add: - SYS_CHROOT runAsUser: 1000 env: - name: GITEA_APP_INI value: /data/gitea/conf/app.ini - name: GITEA_CUSTOM value: /data/gitea - name: GITEA_WORK_DIR value: /data - name: GITEA_TEMP value: /tmp/gitea - name: HOME value: /data/gitea/git - name: GITEA_OAUTH_KEY_0 valueFrom: secretKeyRef: key: key name: gitea-oauth-secret - name: GITEA_OAUTH_SECRET_0 valueFrom: secretKeyRef: key: secret name: gitea-oauth-secret - name: GITEA_ADMIN_USERNAME valueFrom: secretKeyRef: key: username name: gitea-admin-user - name: GITEA_ADMIN_PASSWORD valueFrom: secretKeyRef: key: password name: gitea-admin-user volumeMounts: - name: init mountPath: /usr/sbin - name: temp mountPath: /tmp - name: data mountPath: /data resources: limits: {} requests: cpu: 100m memory: 128Mi terminationGracePeriodSeconds: 60 containers: - name: gitea image: "gitea/gitea:1.21.11-rootless" imagePullPolicy: IfNotPresent env: # SSH Port values have to be set here as well for openssh configuration - name: SSH_LISTEN_PORT value: "2222" - name: SSH_PORT value: "2222" - name: GITEA_APP_INI value: /data/gitea/conf/app.ini - name: GITEA_CUSTOM value: /data/gitea - name: GITEA_WORK_DIR value: /data - name: GITEA_TEMP value: /tmp/gitea - name: TMPDIR value: /tmp/gitea - name: HOME value: /data/gitea/git ports: - name: ssh containerPort: 2222 - name: http containerPort: 3000 livenessProbe: failureThreshold: 10 initialDelaySeconds: 200 periodSeconds: 10 successThreshold: 1 tcpSocket: port: http timeoutSeconds: 1 readinessProbe: failureThreshold: 3 initialDelaySeconds: 5 periodSeconds: 10 successThreshold: 1 tcpSocket: port: http timeoutSeconds: 1 resources: {} securityContext: capabilities: add: - SYS_CHROOT volumeMounts: - name: temp mountPath: /tmp - name: data mountPath: /data volumes: - name: init secret: secretName: gitea-init defaultMode: 110 - name: config secret: secretName: gitea defaultMode: 110 - name: inline-config-sources secret: secretName: gitea-inline-config - name: temp emptyDir: {} - name: data persistentVolumeClaim: claimName: gitea-shared-storage