startupProbe:
httpGet:
path: "/startup"
port: 8080
periodSeconds: 1
failureThreshold: 1


(아래 API를 날리면 readinessProbe와 livenessProbe가 동시에 실패하게 됩니다)
// 부하 증가 - (App 내부 isAppReady와 isAppLive를 False로 바꿈)
curl <http://192.168.56.30:31231/server-load-on>
// 외부 API 실패
curl <http://192.168.56.30:31231/hello>
// 부하 감소 API - (App 내부 isAppReady와 isAppLive를 True로 바꿈)
curl <http://192.168.56.30:31231/server-load-off>
initialDelaySeconds: 컨테이너가 시작된 후 프로브를 처음 수행하기 전까지의 지연 시간(초).periodSeconds: 프로브를 수행하는 간격(초).timeoutSeconds: 프로브의 타임아웃(초).failureThreshold: 프로브가 실패로 간주되기 전의 실패 시도 횟수.