# ks-infra **Repository Path**: linuxsuren/ks-infra ## Basic Information - **Project Name**: ks-infra - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-11-19 - **Last Updated**: 2021-12-15 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README This is the infra repo for KubeSphere community. > As you can see, this repo located in [kubesphere-sigs](https://github.com/kubesphere-sigs) instead of [kubesphere](https://github.com/kubesphere). That means we only put those exploratory project in here. We're using GitOps frameworks to keep all environments updated. ### Setup Environment Install ArgoCD first ```shell kubectl create ns argocd kustomize build prod/argocd/core-install | kubectl apply -n argocd -f - ``` then install cert-manager: ```shell hd install cert-manager cmctl x install ``` *Please change the default namespace of your kubectl config to be argocd.* then create ArgoCD Application: ```shell argocd app create appset --repo https://github.com/kubesphere-sigs/ks-infra \ --path appset --dest-namespace argocd \ --sync-policy automated \ --dest-server https://kubernetes.default.svc ```