애플리케이션 롤링 롤아웃 수행

1 개요[ | ]

애플리케이션 롤링 롤아웃 수행

2 시나리오[ | ]

  • default 네임스페이스에서 실행중인 "wonderful" 애플리케이션의...
  • 이미지를 nginx:alpine로 전환
  • maxSurge50%로, maxUnavailable0%으로 세팅

3 실습[ | ]

$ k edit deploy wonderful-v1
...
spec:
  ...
  strategy:
    rollingUpdate:
      maxSurge: 50%
      maxUnavailable: 0%
    type: RollingUpdate
  template:
    metadata:
      creationTimestamp: null
      labels:
        app: wonderful
    spec:
      containers:
      - image: nginx:alpine
        ...
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}