From eb25976656231748f2fcaf7c1ee3d823ea24b233 Mon Sep 17 00:00:00 2001 From: Mathod Date: Thu, 20 Nov 2025 05:40:54 +0100 Subject: [PATCH] reset --- bootstrap/apps/examples/README.md | 6 ------ bootstrap/apps/examples/deployment.yaml | 19 ------------------- bootstrap/apps/examples/kustomization.yaml | 5 ----- bootstrap/apps/examples/service.yaml | 11 ----------- 4 files changed, 41 deletions(-) delete mode 100644 bootstrap/apps/examples/README.md delete mode 100644 bootstrap/apps/examples/deployment.yaml delete mode 100644 bootstrap/apps/examples/kustomization.yaml delete mode 100644 bootstrap/apps/examples/service.yaml diff --git a/bootstrap/apps/examples/README.md b/bootstrap/apps/examples/README.md deleted file mode 100644 index 6da7288..0000000 --- a/bootstrap/apps/examples/README.md +++ /dev/null @@ -1,6 +0,0 @@ -# demo-app -### Installation: -To install this application using the `argocd-autopilot`, assuming you already have gone through the [bootstrap process](https://argocd-autopilot.readthedocs.io/en/latest/Getting-Started/), run the following: -```bash -argocd-autopilot app create hello-world --app github.com/Mathod95/courses/courses_002/apps/examples -p production -``` \ No newline at end of file diff --git a/bootstrap/apps/examples/deployment.yaml b/bootstrap/apps/examples/deployment.yaml deleted file mode 100644 index 943c7a2..0000000 --- a/bootstrap/apps/examples/deployment.yaml +++ /dev/null @@ -1,19 +0,0 @@ -apiVersion: apps/v1 -kind: Deployment -metadata: - name: simple-deployment -spec: - replicas: 1 - selector: - matchLabels: - app: trivial-go-web-app - template: - metadata: - labels: - app: trivial-go-web-app - spec: - containers: - - name: webserver-simple - image: docker.io/kostiscodefresh/simple-web-app:3d9b390 - ports: - - containerPort: 8080 \ No newline at end of file diff --git a/bootstrap/apps/examples/kustomization.yaml b/bootstrap/apps/examples/kustomization.yaml deleted file mode 100644 index 87b09a3..0000000 --- a/bootstrap/apps/examples/kustomization.yaml +++ /dev/null @@ -1,5 +0,0 @@ -apiVersion: kustomize.config.k8s.io/v1beta1 -kind: Kustomization -resources: - - ./deployment.yaml - - ./service.yaml \ No newline at end of file diff --git a/bootstrap/apps/examples/service.yaml b/bootstrap/apps/examples/service.yaml deleted file mode 100644 index 00d86d6..0000000 --- a/bootstrap/apps/examples/service.yaml +++ /dev/null @@ -1,11 +0,0 @@ -apiVersion: v1 -kind: Service -metadata: - name: simple-service -spec: - selector: - app: trivial-go-web-app - ports: - - protocol: TCP - port: 80 - targetPort: 8080 \ No newline at end of file