Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Configmap
- kubectl
- private repostiroy
- EC2
- docker myql
- SecurityContextHolder
- 쿠버네티스교과서
- yaml예시
- linux 파일복사
- aws cli ec2
- k8s
- describe-instances
- amazon ebs활용
- Ansible
- 서버간 파일전송
- React Native
- 명령어
- cli ec2
- jenkins parameter
- statefulset
- pod
- 쿠버네티스
- ELB
- nexus proxy
- amazon ebs
- kubectl명령어
- amazon ebs종류
- sql 공유
- aws cli
- docker
Archives
- Today
- Total
게으름을 위한 부지런한 게으름뱅리' 블로그
[K8S] 클라우드 제공업체별 LoadBalancer yaml 예시 본문
반응형
예시 1: Google Cloud Platform (GCP) LoadBalancer 설정
apiVersion: v1
kind: Service
metadata:
name: my-gcp-lb-service
spec:
type: LoadBalancer # GCP의 경우 LoadBalancer로 설정
selector:
app: my-app
ports:
- protocol: TCP
port: 80
targetPort: 8080
loadBalancerIP: 130.211.204.1 # GCP LoadBalancer에 할당할 고정 IP 주소
annotations:
cloud.google.com/load-balancer-type: "Internal" # 내부 로드 밸런서로 설정
예시 2: Amazon Web Services (AWS) LoadBalancer 설정
apiVersion: v1
kind: Service
metadata:
name: my-aws-lb-service
annotations:
service.beta.kubernetes.io/aws-load-balancer-internal: "true" # 내부 로드 밸런서로 설정
spec:
type: LoadBalancer # AWS의 경우 LoadBalancer로 설정
selector:
app: backend
ports:
- protocol: TCP
port: 80
targetPort: 8080
예시 3: Microsoft Azure LoadBalancer 설정
apiVersion: v1
kind: Service
metadata:
name: my-azure-lb-service
annotations:
service.beta.kubernetes.io/azure-load-balancer-internal: "true" # 내부 로드 밸런서로 설정
spec:
type: LoadBalancer # Azure의 경우 LoadBalancer로 설정
selector:
app: frontend
ports:
- protocol: TCP
port: 80
targetPort: 8080
반응형
'IT > K8S' 카테고리의 다른 글
[K8S] 쿠버네티스 "Service" yaml 예시 (0) | 2024.07.03 |
---|---|
[K8S] etcd 사용 예시 (0) | 2024.07.01 |
[K8S] K8S에서 공용 Data 사용하기 (StatefulSet yaml 예시 ) (0) | 2024.07.01 |
[K8S] K8S에서 공용 Data 사용하기 (PV와 PVC yaml 예시) (0) | 2024.07.01 |
[K8S] 쿠버네티스 Configmap과 yaml 예시 (0) | 2024.06.30 |
Comments