From a15d159bbab1c712c51c338e4d63d541eee79b88 Mon Sep 17 00:00:00 2001 From: Diego Tavares Date: Mon, 12 Aug 2024 15:57:03 -0700 Subject: [PATCH] Delete k8s file File was added accidentally --- .../k8s/kustomize/base/rest-gateway.yaml | 54 ------------------- 1 file changed, 54 deletions(-) delete mode 100644 spideploy/k8s/kustomize/base/rest-gateway.yaml diff --git a/spideploy/k8s/kustomize/base/rest-gateway.yaml b/spideploy/k8s/kustomize/base/rest-gateway.yaml deleted file mode 100644 index bdb099654..000000000 --- a/spideploy/k8s/kustomize/base/rest-gateway.yaml +++ /dev/null @@ -1,54 +0,0 @@ -kind: Deployment -apiVersion: apps/v1 -metadata: - name: opencue-rest-gateway - namespace: opencue - labels: - app: opencue - component: rest-gateway -spec: - replicas: 1 - selector: - matchLabels: - app: opencue - component: rest-gateway - template: - metadata: - creationTimestamp: null - labels: - app: opencue - component: rest-gateway - spec: - containers: - - name: rest-gateway - imagePullPolicy: Always - terminationMessagePolicy: File - ports: - - containerPort: 8448 - image: docker-local.artifactory.spimageworks.com/gitlab/spi/dev/infrastructure/api/opencue/rest_gateway:latest - env: - - name: CUEBOT_ENDPOINT - values: cuebot-grpc.opencue.svc.cluster.local:8443 - resources: - limits: - cpu: "1000m" - memory: "2Gi" - requests: - cpu: "200m" - memory: "1Gi" - restartPolicy: Always - terminationGracePeriodSeconds: 10 ---- -apiVersion: v1 -kind: Service -metadata: - name: rest-gateway-service - namespace: opencue -spec: - selector: - app: opencue - component: rest-gateway - ports: - - protocol: TCP - port: 8448 - targetPort: 8448 \ No newline at end of file