250x250
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 |
Tags
- 파이썬
- 하둡
- Identity and access management
- CLF-01
- RDBMS
- 클라우드자격증
- 빅데이터
- 클라우데라자격증
- mysql
- hadoop
- SQL
- EC2
- 데이터베이스
- hive
- 리눅스
- 프로그래머스
- MFA
- CCAAdministrator
- 빅데이터실무자격증
- 쉘스크립트
- programmers
- 코딩테스트
- Multi Factor Authentication
- AWSCloudPractitioner
- CCA131
- IAM
- AWS자격증
- 클라우드컴퓨팅
- SQLD
- sql자격증
Archives
- Today
- Total
Sherry IT Blog
helm install 할때 ingress.tls.source serect을 설정하는 방법 본문
728x90
반응형
1. serect 에 인증서 저장
kubectl create secret tls my-tls-secret --key /path/to/my/tls.key --cert /path/to/my/tls.crt
2.yaml 에 secret 설정
apiVersion: networking.k8s.io/v1beta1
kind: Ingress
metadata:
name: my-ingress
annotations:
# Configure TLS using a secret
nginx.ingress.kubernetes.io/ssl-redirect: "true"
spec:
tls:
- secretName: my-tls-secret
rules:
- host: my-host.com
http:
paths:
- path: /
backend:
serviceName: my-service
servicePort: 80
참고 https://ahnseungkyu.com/m/255?fbclid=IwAR1-_in0E4EbdpGLv0vKFavnf5DSrSy2IoO9tlRg1g_QN4sfzCoCRg9in88
728x90
반응형
Comments