We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
StatefulSet 은 workload API object 로, Stateful 한 Application 을 관리하기 위함이다.
apiVersion: apps/v1 kind: StatefulSet metadata: name: sample-statefulset spec: serviceName: sample-statefulset replicas: 3 selector: matchLabels: app: sample-app template: metadata: labels: app: sample-app spec: containers: - name: nginx-container image: nginx:1.16 volumnMounts: - name: www mountPath: /usr/share/nginx/html volumneChainTemplates: - metadata: name: www spec: accessModes: - ReadWriteOnce resources: requests: storage: 1G
The text was updated successfully, but these errors were encountered:
No branches or pull requests
kubernates 의 기초 용어들을 정리합니다.
StatefulSet (link)
StatefulSet 은 workload API object 로, Stateful 한 Application 을 관리하기 위함이다.
The text was updated successfully, but these errors were encountered: