diff --git a/readme.md b/readme.md index b40ed77..79c92bd 100644 --- a/readme.md +++ b/readme.md @@ -1,27 +1,29 @@ - - # Follow this video to be a ArgoCD Boss + https://youtu.be/JLrR9RV9AFA - # Installing latest/stable version of ArgoCD + ``` kubectl create namespace argocd kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml ``` ### Forward Ports + ``` -k get services -n argocd +kubectl get services -n argocd kubectl port-forward service/argocd-server -n argocd 8080:443 ``` ### Get Credentials + ``` kubectl -n argocd get secret argocd-initial-admin-secret -o jsonpath="{.data.password}" | base64 -d ``` # Install ArgoCD CLI / Login via CLI + ``` brew install argocd kubectl port-forward svc/argocd-server -n argocd 8080:443 @@ -29,6 +31,7 @@ argocd login 127.0.0.1:8080 ``` # Creating an Application using ArgoCD CLI: + ``` argocd app create webapp-kustom-prod \ --repo https://github.com/devopsjourney1/argo-examples.git \ @@ -37,6 +40,7 @@ argocd app create webapp-kustom-prod \ ``` # Command Cheat sheet + ``` argocd app create #Create a new Argo CD application. argocd app list #List all applications in Argo CD. @@ -49,8 +53,3 @@ argocd app rollback #Rollback to a previous version argocd app set #Set the application’s configuration. argocd app delete #Delete an Argo CD application. ``` - - - - - diff --git a/helm-webapp/.helmignore b/weather-webapp/.helmignore similarity index 100% rename from helm-webapp/.helmignore rename to weather-webapp/.helmignore diff --git a/helm-webapp/Chart.yaml b/weather-webapp/Chart.yaml similarity index 100% rename from helm-webapp/Chart.yaml rename to weather-webapp/Chart.yaml diff --git a/helm-webapp/templates/NOTES.txt b/weather-webapp/templates/NOTES.txt similarity index 100% rename from helm-webapp/templates/NOTES.txt rename to weather-webapp/templates/NOTES.txt diff --git a/helm-webapp/templates/configmap.yaml b/weather-webapp/templates/configmap.yaml similarity index 100% rename from helm-webapp/templates/configmap.yaml rename to weather-webapp/templates/configmap.yaml diff --git a/helm-webapp/templates/deployment.yaml b/weather-webapp/templates/deployment.yaml similarity index 96% rename from helm-webapp/templates/deployment.yaml rename to weather-webapp/templates/deployment.yaml index 1ba1743..4adfdf3 100644 --- a/helm-webapp/templates/deployment.yaml +++ b/weather-webapp/templates/deployment.yaml @@ -20,7 +20,7 @@ spec: - name: mycontainer image: "{{ .Values.image.name }}:{{ .Values.image.tag }}" ports: - - containerPort: 80 + - containerPort: 3000 envFrom: - configMapRef: name: {{ .Values.configmap.name }} diff --git a/helm-webapp/templates/service.yaml b/weather-webapp/templates/service.yaml similarity index 94% rename from helm-webapp/templates/service.yaml rename to weather-webapp/templates/service.yaml index 0ffe034..2f44541 100644 --- a/helm-webapp/templates/service.yaml +++ b/weather-webapp/templates/service.yaml @@ -6,7 +6,7 @@ metadata: app: {{ .Values.appName }} spec: ports: - - port: 80 + - port: 3000 protocol: TCP name: flask selector: diff --git a/helm-webapp/values-dev.yaml b/weather-webapp/values-dev.yaml similarity index 86% rename from helm-webapp/values-dev.yaml rename to weather-webapp/values-dev.yaml index a53c0b2..386934b 100644 --- a/helm-webapp/values-dev.yaml +++ b/weather-webapp/values-dev.yaml @@ -1,5 +1,5 @@ -replicas: 5 +replicas: 2 configmap: data: diff --git a/helm-webapp/values-prod.yaml b/weather-webapp/values-prod.yaml similarity index 86% rename from helm-webapp/values-prod.yaml rename to weather-webapp/values-prod.yaml index fa91ac7..e726c04 100644 --- a/helm-webapp/values-prod.yaml +++ b/weather-webapp/values-prod.yaml @@ -1,5 +1,5 @@ -replicas: 4 +replicas: 2 configmap: data: diff --git a/helm-webapp/values.yaml b/weather-webapp/values.yaml similarity index 51% rename from helm-webapp/values.yaml rename to weather-webapp/values.yaml index 2f332a2..cae0803 100644 --- a/helm-webapp/values.yaml +++ b/weather-webapp/values.yaml @@ -1,12 +1,12 @@ -appName: myhelmapp +appName: weatherapp -port: 80 +port: 3000 configmap: - name: myhelmapp-configmap-v1 + name: weatherapp-configmap-v1 data: CUSTOM_HEADER: 'This app was deployed with helm!' image: - name: devopsjourney1/mywebapp + name: shujohns/weather tag: latest \ No newline at end of file