--- apiVersion: networking.k8s.io/v1 kind: Ingress metadata: name: app annotations: cert-manager.io/cluster-issuer: letsencrypt-prod gethomepage.dev/enabled: "true" gethomepage.dev/instance: "$GITHUB_REF_NAME" gethomepage.dev/name: Element gethomepage.dev/icon: element gethomepage.dev/description: Secure collaboration and messaging spec: ingressClassName: nginx tls: - secretName: tls-app hosts: - "$BASE_URL" rules: - host: "$BASE_URL" http: paths: - path: / pathType: Prefix backend: service: name: app port: name: http --- apiVersion: v1 kind: Service metadata: name: app labels: app: app spec: selector: app: app ports: - name: http port: 80 targetPort: http --- apiVersion: apps/v1 kind: Deployment metadata: name: app labels: app: app spec: replicas: $NB_REPLICAS selector: matchLabels: app: app template: metadata: labels: app: app spec: containers: - name: app image: "$IMAGEAPP" ports: - name: http containerPort: 80 volumeMounts: - name: config mountPath: /app/config.json subPath: config.json volumes: - name: config configMap: name: element