diff --git a/template/stacks/local-backup/minio/helm/values.yaml b/template/stacks/local-backup/minio/helm/values.yaml index 8a58d96..eff14f0 100644 --- a/template/stacks/local-backup/minio/helm/values.yaml +++ b/template/stacks/local-backup/minio/helm/values.yaml @@ -14,10 +14,4 @@ persistence: buckets: - name: edfbuilder-backups -consoleIngress: - enabled: true - ingressClassName: nginx - hosts: - - minio-backup.{{ .Values.edfbuilderTargetDomain }} - existingSecret: root-creds diff --git a/template/stacks/ref-implementation/argo-workflows/manifests/dev/ingress.yaml b/template/stacks/ref-implementation/argo-workflows/manifests/dev/ingress.yaml deleted file mode 100644 index ea8c75f..0000000 --- a/template/stacks/ref-implementation/argo-workflows/manifests/dev/ingress.yaml +++ /dev/null @@ -1,31 +0,0 @@ -apiVersion: networking.k8s.io/v1 -kind: Ingress -metadata: - name: argo-workflows-ingress - namespace: argo - annotations: - nginx.ingress.kubernetes.io/use-regex: "true" - nginx.ingress.kubernetes.io/rewrite-target: /$2 -spec: - ingressClassName: "nginx" - rules: - - host: localhost - http: - paths: - - path: /argo-workflows(/|$)(.*) - pathType: ImplementationSpecific - backend: - service: - name: argo-server - port: - name: web - - host: {{ .Values.edfbuilderTargetDomain }} - http: - paths: - - path: /argo-workflows(/|$)(.*) - pathType: ImplementationSpecific - backend: - service: - name: argo-server - port: - name: web diff --git a/template/stacks/ref-implementation/backstage/manifests/install.yaml b/template/stacks/ref-implementation/backstage/manifests/install.yaml index 6a77cfb..57124f2 100644 --- a/template/stacks/ref-implementation/backstage/manifests/install.yaml +++ b/template/stacks/ref-implementation/backstage/manifests/install.yaml @@ -425,32 +425,3 @@ spec: remoteRef: key: gitea-credential property: password ---- -apiVersion: networking.k8s.io/v1 -kind: Ingress -metadata: - name: backstage - namespace: backstage -spec: - ingressClassName: "nginx" - rules: - - host: localhost - http: - paths: - - path: / - pathType: Prefix - backend: - service: - name: backstage - port: - name: http - - host: {{ .Values.edfbuilderTargetDomain }} - http: - paths: - - path: / - pathType: Prefix - backend: - service: - name: backstage - port: - name: http