From 2ac990ff3f73810d11e8cfc423490298fd005bdc Mon Sep 17 00:00:00 2001 From: Asara Date: Sat, 8 Jul 2023 16:15:49 -0400 Subject: [PATCH] Migrated longhorn out --- helm/setup/longhorn/install.sh | 12 ------ helm/setup/longhorn/istio-ingress.yaml | 56 -------------------------- 2 files changed, 68 deletions(-) delete mode 100755 helm/setup/longhorn/install.sh delete mode 100644 helm/setup/longhorn/istio-ingress.yaml diff --git a/helm/setup/longhorn/install.sh b/helm/setup/longhorn/install.sh deleted file mode 100755 index 3afc316..0000000 --- a/helm/setup/longhorn/install.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/bash -CHART_VERSION=1.4.2 - -helm repo add longhorn https://charts.longhorn.io -helm repo update -helm upgrade --install \ - longhorn \ - longhorn/longhorn \ - -n longhorn-system \ - --version ${CHART_VERSION} \ - --create-namespace \ - --cleanup-on-fail diff --git a/helm/setup/longhorn/istio-ingress.yaml b/helm/setup/longhorn/istio-ingress.yaml deleted file mode 100644 index 1dff6a6..0000000 --- a/helm/setup/longhorn/istio-ingress.yaml +++ /dev/null @@ -1,56 +0,0 @@ ---- -apiVersion: cert-manager.io/v1 -kind: Certificate -metadata: - name: longhorn-cert - namespace: istio-system -spec: - secretName: longhorn-cert - commonName: longhorn.teapot.masked.name - dnsNames: - - longhorn.teapot.masked.name - issuerRef: - name: vault-issuer - kind: ClusterIssuer - group: cert-manager.io -... ---- -apiVersion: networking.istio.io/v1beta1 -kind: Gateway -metadata: - name: longhorn-gateway - namespace: longhorn-system -spec: - selector: - istio: ingressgateway-internal - servers: - - port: - number: 443 - name: https - protocol: HTTPS - tls: - mode: SIMPLE - credentialName: longhorn-cert - hosts: - - longhorn.teapot.masked.name -... ---- -apiVersion: networking.istio.io/v1beta1 -kind: VirtualService -metadata: - name: longhorn-gateway - namespace: longhorn-system -spec: - hosts: - - longhorn.teapot.masked.name - gateways: - - longhorn-gateway - http: - - match: - - uri: - prefix: / - route: - - destination: - port: - number: 80 - host: longhorn-frontend