YAML(2)
-
kubectl apply -f yaml 파일 사용법
command 사용법 # 기본 command: ["{명령어}", "{명령어 args}", "{명령어 args}" ..] # 멀티라인 commnad: - sh - "-c" - | /bin/sh test.txt # minikube # test.txt가 있는지 확인 minikube ssh cd /home/root/a ls
2024.03.02 -
minikube deployment yaml 파일 생성
{namespace}: 원하는 namespace명을 기술 {pod}: 원하는 pod명을 기술 # pod-deployment.yml ----------------------------------- apiVersion: v1 kind: Namespace metadata: name: {namespace} --- apiVersion: apps/v1 kind: Deployment metadata: name: {pod} namespace: {namespace} labels: app: {pod} spec: replicas: 1 selector: matchLabels: app: {pod} template: metadata: labels: app: {pod} spec: containers: - name: {pod} im..
2024.02.03