wp-k8s
WordPress on Kubernetes project: prod ready & fully scalable for both private and public cloud
파일 탐색기
- FUNDING.yml
- .gitignore
- cluster-issuer-staging.yaml
- cluster-issuer.yaml
- hpa.yaml
- ingress.yaml
- kustomization.yaml
- LICENSE
- metallb.yaml
- mysql-cluster.yaml
- nfs-synology.yaml
- nfs.yaml
- README.md
- stateless-sa-sec.yaml
- vpa.yaml
- wordpress-deployment.yaml
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
helm install
설명 보기 ▼
helm install
Install a helm chart.
helm install {{name}} {{repository_name}}/{{chart_name}}
Install a helm chart:
helm install {{name}} {{path/to/source_directory}}
Install a helm chart from an unpacked chart directory:
helm install {{package_name}} {{https://example.com/charts/packagename-1.2.3.tgz}}
Install a helm chart from a URL:
helm
설명 보기 ▼
helm
Kubernetes 패키지 관리자.
`install`과 같은 하위 명령어에는 자체 사용법 문서가 있음.
더 많은 정보: <https://helm.sh/docs/helm/>.
helm create {{chart_name}}
helm 차트 생성:
helm repo add {{repository_name}}
새로운 helm 레포지토리를 추가:
helm repo {{[ls|list]}}
helm 레포지토리 나열:
kubectl apply
설명 보기 ▼
kubectl apply
Manage applications through files defining Kubernetes resources.
Create and update resources in a cluster.
kubectl apply {{[-f|--filename]}} {{path/to/file}}
Apply a configuration to a resource by file name:
kubectl apply {{[-k|--kustomize]}} {{path/to/directory}}
Apply a configuration to a resource from `kustomization.yaml` in a directory:
{{cat pod.json}} | kubectl apply {{[-f|--filename]}} -
Apply a configuration to a resource by `stdin`:
