This commit is contained in:
JohnShu 2023-08-16 15:27:21 +00:00 committed by GitHub
commit 82592b9c82
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 16 additions and 17 deletions

View File

@ -1,27 +1,29 @@
# Follow this video to be a ArgoCD Boss # Follow this video to be a ArgoCD Boss
https://youtu.be/JLrR9RV9AFA https://youtu.be/JLrR9RV9AFA
# Installing latest/stable version of ArgoCD # Installing latest/stable version of ArgoCD
``` ```
kubectl create namespace argocd kubectl create namespace argocd
kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml
``` ```
### Forward Ports ### Forward Ports
``` ```
k get services -n argocd kubectl get services -n argocd
kubectl port-forward service/argocd-server -n argocd 8080:443 kubectl port-forward service/argocd-server -n argocd 8080:443
``` ```
### Get Credentials ### Get Credentials
``` ```
kubectl -n argocd get secret argocd-initial-admin-secret -o jsonpath="{.data.password}" | base64 -d kubectl -n argocd get secret argocd-initial-admin-secret -o jsonpath="{.data.password}" | base64 -d
``` ```
# Install ArgoCD CLI / Login via CLI # Install ArgoCD CLI / Login via CLI
``` ```
brew install argocd brew install argocd
kubectl port-forward svc/argocd-server -n argocd 8080:443 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: # Creating an Application using ArgoCD CLI:
``` ```
argocd app create webapp-kustom-prod \ argocd app create webapp-kustom-prod \
--repo https://github.com/devopsjourney1/argo-examples.git \ --repo https://github.com/devopsjourney1/argo-examples.git \
@ -37,6 +40,7 @@ argocd app create webapp-kustom-prod \
``` ```
# Command Cheat sheet # Command Cheat sheet
``` ```
argocd app create #Create a new Argo CD application. argocd app create #Create a new Argo CD application.
argocd app list #List all applications in Argo CD. argocd app list #List all applications in Argo CD.
@ -49,8 +53,3 @@ argocd app rollback <appname> #Rollback to a previous version
argocd app set <appname> #Set the applications configuration. argocd app set <appname> #Set the applications configuration.
argocd app delete <appname> #Delete an Argo CD application. argocd app delete <appname> #Delete an Argo CD application.
``` ```

View File

@ -20,7 +20,7 @@ spec:
- name: mycontainer - name: mycontainer
image: "{{ .Values.image.name }}:{{ .Values.image.tag }}" image: "{{ .Values.image.name }}:{{ .Values.image.tag }}"
ports: ports:
- containerPort: 80 - containerPort: 3000
envFrom: envFrom:
- configMapRef: - configMapRef:
name: {{ .Values.configmap.name }} name: {{ .Values.configmap.name }}

View File

@ -6,7 +6,7 @@ metadata:
app: {{ .Values.appName }} app: {{ .Values.appName }}
spec: spec:
ports: ports:
- port: 80 - port: 3000
protocol: TCP protocol: TCP
name: flask name: flask
selector: selector:

View File

@ -1,5 +1,5 @@
replicas: 5 replicas: 2
configmap: configmap:
data: data:

View File

@ -1,5 +1,5 @@
replicas: 4 replicas: 2
configmap: configmap:
data: data:

View File

@ -1,12 +1,12 @@
appName: myhelmapp appName: weatherapp
port: 80 port: 3000
configmap: configmap:
name: myhelmapp-configmap-v1 name: weatherapp-configmap-v1
data: data:
CUSTOM_HEADER: 'This app was deployed with helm!' CUSTOM_HEADER: 'This app was deployed with helm!'
image: image:
name: devopsjourney1/mywebapp name: shujohns/weather
tag: latest tag: latest