Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. # v1_deployment <code> # # 내부용 마이크로서비스 # apiVersion: apps/v1 kind: Deployment metadata: name: web-apl2-rest spec: replicas: 1 selector: matchLabels: apl: web-apl2-rest template: metadata: labels: apl: web-apl2-rest spec: containers: - image: maho/webapl3 name: rest-server-c ports: - containerPort: 80 --- # # 내부 마이크로 서비스 용 # apiVersion: v1 kind: Service metadata: name: web-apl2-rest spec: ##type: NodePort type: ClusterIP selector: apl: web-apl2-rest ports: - port: 80 protocol: TCP </code> open/v1-deployment.txt Last modified: 2024/10/05 06:15by 127.0.0.1