Object Spec: YAML


ex)

스크린샷 2024-02-20 오전 11.08.35.png

apiVersion: v1
kind: Pod
metadata:
	name: example
spec:
	containers:
	- name: busybox
		image: busybox:1.25

ex)

스크린샷 2024-02-20 오전 11.09.10.png

apiVersion: apps/v1
kind: ReplicaSet
metadata:
	name: frontent
spec:
	replicas: 3
	selector:
		matchLabels:
			app: frontend
	template:
		metadata:
			labels:
				app: frontend
		spec:
			containers:
			- name: web
				image: image:v1

API 호출하기


스크린샷 2024-02-20 오전 11.15.47.png