You are viewing an old version of this page. View the current version.
Compare with Current View Page History
« Previous Version 28 Next »
목차
NodePort
ClusterIP (default)
LoadBalancer
apiVersion: apps/v1 kind: Deployment metadata: name: nginx-deploy labels: app: myapp-deploy type: front-end spec: template: metadata: name: nginx labels: app: myapp type: front-end spec: containers: - name: nginx image: nginx:1.14.2 ports: - containerPort: 80 selector: matchLabels: type: front-end replicas: 3
apiVersion: v1 kind: Service metadata: labels: app: myapp-svc type: front-end name: nginx-svc spec: ports: - port: 80 protocol: TCP targetPort: 80 selector: type: front-end
Single Pod on Single Node
Multi Pod on Single Node
Multi Pod on Multi Node