From b2ab0ba1938a6c22195a7a0d1475c74d172c1313 Mon Sep 17 00:00:00 2001 From: Maciej Szulik Date: Tue, 10 Jun 2025 11:37:47 +0200 Subject: [PATCH] Drop unused testing manifest Signed-off-by: Maciej Szulik --- .../statefulset/nginx/service.yaml | 13 ------- .../statefulset/nginx/statefulset.yaml | 34 ------------------- 2 files changed, 47 deletions(-) delete mode 100644 test/e2e/testing-manifests/statefulset/nginx/service.yaml delete mode 100644 test/e2e/testing-manifests/statefulset/nginx/statefulset.yaml diff --git a/test/e2e/testing-manifests/statefulset/nginx/service.yaml b/test/e2e/testing-manifests/statefulset/nginx/service.yaml deleted file mode 100644 index 5499b375c34..00000000000 --- a/test/e2e/testing-manifests/statefulset/nginx/service.yaml +++ /dev/null @@ -1,13 +0,0 @@ -apiVersion: v1 -kind: Service -metadata: - name: nginx - labels: - app: nginx -spec: - ports: - - port: 80 - name: web - clusterIP: None - selector: - app: nginx \ No newline at end of file diff --git a/test/e2e/testing-manifests/statefulset/nginx/statefulset.yaml b/test/e2e/testing-manifests/statefulset/nginx/statefulset.yaml deleted file mode 100644 index abab8e89b3e..00000000000 --- a/test/e2e/testing-manifests/statefulset/nginx/statefulset.yaml +++ /dev/null @@ -1,34 +0,0 @@ -apiVersion: apps/v1 -kind: StatefulSet -metadata: - name: web -spec: - serviceName: "nginx" - replicas: 3 - selector: - matchLabels: - app: nginx - template: - metadata: - labels: - app: nginx - spec: - containers: - - name: nginx - image: {{.NginxImageNew}} - ports: - - containerPort: 80 - name: web - volumeMounts: - - name: www - mountPath: /usr/share/nginx/html - volumeClaimTemplates: - - metadata: - name: www - annotations: - volume.beta.kubernetes.io/storage-class: nginx-sc - spec: - accessModes: [ "ReadWriteOnce" ] - resources: - requests: - storage: 1Gi