일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- SQL
- sql자격증
- 쉘스크립트
- mysql
- 파이썬
- hadoop
- 하둡
- hive
- EC2
- AWSCloudPractitioner
- CCA131
- CLF-01
- CCAAdministrator
- 데이터베이스
- Multi Factor Authentication
- 코딩테스트
- 빅데이터
- programmers
- 리눅스
- Identity and access management
- SQLD
- 빅데이터실무자격증
- IAM
- MFA
- 클라우드자격증
- 클라우드컴퓨팅
- 클라우데라자격증
- RDBMS
- 프로그래머스
- AWS자격증
- Today
- Total
Sherry IT Blog
jupyter pod _endpoint 본문
apiVersion: apps/v1
kind: Deployment
metadata:
name: jupyter-notebook-deployment
labels:
app: jupyter-notebook
spec:
replicas: 1
selector:
matchLabels:
app: jupyter-notebook
template:
metadata:
labels:
app: jupyter-notebook
spec:
containers:
- name: jupyter-notebook
image: jupyter/scipy-notebook:latest
ports:
- containerPort: 8888
volumeMounts:
- name: jupyter-notebook-persistent-storage
mountPath: /home/jovyan/work
volumes:
- name: jupyter-notebook-persistent-storage
persistentVolumeClaim:
claimName: jupyter-notebook-pvc
---
apiVersion: v1
kind: Service
metadata:
name: jupyter-notebook-service
spec:
selector:
app: jupyter-notebook
type: LoadBalancer
ports:
- name: http
port: 8888
targetPort: 8888
protocol: TCP
---
apiVersion: v1
kind: Endpoints
metadata:
name: jupyter-notebook-service
subsets:
- addresses:
- ip: <pod IP address>
ports:
- name: http
port: 8888
protocol: TCP
'Kubernetes' 카테고리의 다른 글
jupyter notebook pod 만들기 (0) | 2023.05.11 |
---|---|
[Kubernetes] Ingress설정을 이용해서 jupyternotebook pod 실행하기 (0) | 2023.05.02 |
Kubernetes 설치-onperm (0) | 2023.02.08 |
Kubernetes cluster 구성도구 (0) | 2023.02.08 |