Subsections of MCP Related
MCP Inspector
🚀Installation
Install By
1.get helm repo
Details
helm repo add xxxxx https://xxxx
helm repo update2.install chart
Details
helm install xxxxx/chart-name --generate-name --version a.b.cUsing AY Helm Mirror
for more information, you can check 🔗https://github.com/AaronYang0628/helm-chart-mirror
helm repo add ay-helm-mirror https://aaronyang0628.github.io/helm-chart-mirror/charts
helm repo update
helm install ay-helm-mirror/chart-name --generate-name --version a.b.c1.prepare `xxxxx-credientials.yaml`
Details
2.prepare `deploy-xxxxx.yaml`
Details
kubectl -n argocd apply -f -<< EOF
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: xxxx
spec:
project: default
source:
repoURL: https://xxxxx
chart: xxxx
targetRevision: a.b.c
EOF3.sync by argocd
Details
argocd app sync argocd/xxxxUsing AY ACR Image Mirror
Using DaoCloud Mirror
1.init server
Details
Using AY ACR Image Mirror
Using DaoCloud Mirror
1.prepare `argocd-login-credentials`
Details
kubectl get namespaces database > /dev/null 2>&1 || kubectl create namespace database2.apply rolebinding to k8s
4.prepare `deploy-xxxx-flow.yaml`
Details
5.subimit to argo workflow client
Details
argo -n business-workflows submit deploy-xxxx-flow.yaml7.decode password
Details
kubectl -n application get secret xxxx-credentials -o jsonpath='{.data.xxx-password}' | base64 -d1.init server
Details