K8s: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
Line 137: Line 137:


| valign="top" |
| valign="top" |
* [https://medium.com/sysmap-labs/how-to-reset-argocd-password-b381505c92af GitOps » ArgoCD » Reset password]
* [https://argo-cd.readthedocs.io/en/stable/ GitOps » Argo CD » Overview]
* [https://argo-cd.readthedocs.io/en/stable/ GitOps » Argo CD » Overview]
* [https://jenkins-x.io/ GitOps » Jenkins X]
* [https://jenkins-x.io/ GitOps » Jenkins X]
Line 146: Line 147:
* [[Hadoop]]
* [[Hadoop]]
* [[WildFly]]
* [[WildFly]]
* [[Spark]]


|-
|-
Line 157: Line 157:
* [https://docs.gitlab.com/ee/ci/chatops/ ChatOps » GitLab]
* [https://docs.gitlab.com/ee/ci/chatops/ ChatOps » GitLab]
* [https://www.gitops.tech/ GitOps]
* [https://www.gitops.tech/ GitOps]
* [[Spark]]


| valign="top" |
| valign="top" |

Revision as of 20:28, 25 May 2023

Kind

  • Pod
  • PersistentVolume
  • PersistentVolumeClaim
  • Deployment
  • DeploymentConfig
  • ReplicaSet
  • ReplicationController
  • StorageClass

Volume

Argo CD

kubectl create namespace argocd
kubectl get namespace -A

kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml

kubectl get -n=argocd pod
kubectl get -n=argocd service -n argocd
kubectl port-forward -n=argocd service/argocd-server 8080:80

kubectl get -n=argocd -o=yaml secret argocd-initial-admin-secret
echo  RE83Uk81QTU5clZyLTlsdg== | base64 --decode
https://localhost:8080/login

kubectl get -n=argocd configmap
kubectl get -n=argocd deployment
kubectl get -n=argocd service
kubectl get -n=argocd secret
kubectl get -n=argocd event
kubectl get -n=argocd pod
kubectl edit -n=argocd configmap  argocd-rbac-cm
kubectl edit -n=argocd configmap  argocd-cm
kubectl edit -n=argocd deployment argocd-redis
kubectl edit -n=argocd service    argocd-redis
kubectl edit -n=argocd secret     argocd-secret
kubectl edit -n=argocd pod        argocd-app-ctrl-0
kubectl get -n=argocd -o=yaml configmap  argocd-rbac-cm
kubectl get -n=argocd -o=yaml configmap  argocd-cm
kubectl get -n=argocd -o=yaml deployment argocd-redis
kubectl get -n=argocd -o=yaml service    argocd-redis
kubectl get -n=argocd -o=yaml secret     argocd-secret
kubectl get -n=argocd -o=yaml pod        argocd-app-ctrl-0

Knowledge

snap services maas
snap services juju
snap services lxd

References