-
Notifications
You must be signed in to change notification settings - Fork 0
/
nginx.yaml
51 lines (51 loc) · 1.62 KB
/
nginx.yaml
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
apiVersion: v1 # 使用するKubernetes APIバージョンを定義
kind: Service # PodのネットワークであるServiceリソースを定義
metadata: # 名前やラベルを指定
labels:
app: nginx-app
name: nginx
name: nginx-service
spec: # spec内にリソースの仕様を記述する
selector: # 同一のラベルを定義しているリソースを参照
app: nginx-app
name: nginx
type: NodePort # Kubenetes外からアクセスできるようにNodePortを指定(ホストOSからNginxの画面が確認できるようにする)
ports:
- name: nginx-port #ポート番号を指定
port: 80
protocol: TCP
targetPort: nginx-port
---
apiVersion: apps/v1
kind: Deployment # Podの自己修復機能を持つDeploymentリソースを定義
metadata:
labels:
app: nginx-app
name: nginx
name: nginx
spec:
replicas: 1 # 作成するPod数を定義
selector:
matchLabels:
app: nginx-app
name: nginx
template:
metadata:
labels:
app: nginx-app
name: nginx
spec:
containers:
- name: nginx
image: nginx:latest # NginxのDockerHubに記載されているDockerImageの名称とバージョンを指定
resources:
limits:
cpu: "0.5" # Limit CPU usage to 0.5 cores
memory: "512Mi" # Limit memory usage to 512MB
requests:
cpu: "0.1" # Request at least 0.1 cores of CPU
memory: "256Mi" # Request at least 256MB of memory
ports:
- containerPort: 80 # Podから解放するポート番号を定義
name: nginx-port
protocol: TCP