Advertisement
Guest User

Untitled

a guest
Sep 17th, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.30 KB | None | 0 0
  1. apiVersion: apps/v1
  2. kind: Deployment
  3. metadata:
  4. annotations:
  5. deployment.kubernetes.io/revision: '1'
  6. creationTimestamp: '2019-09-05T12:06:28Z'
  7. generation: 1
  8. name: tutorial-web-app-operator
  9. namespace: webapp
  10. resourceVersion: '15621'
  11. selfLink: /apis/apps/v1/namespaces/webapp/deployments/tutorial-web-app-operator
  12. uid: 976ebf6b-cfd5-11e9-913e-02da4bfb8bc2
  13. spec:
  14. progressDeadlineSeconds: 600
  15. replicas: 1
  16. revisionHistoryLimit: 10
  17. selector:
  18. matchLabels:
  19. name: tutorial-web-app-operator
  20. strategy:
  21. rollingUpdate:
  22. maxSurge: 25%
  23. maxUnavailable: 25%
  24. type: RollingUpdate
  25. template:
  26. metadata:
  27. creationTimestamp: null
  28. labels:
  29. name: tutorial-web-app-operator
  30. spec:
  31. containers:
  32. - command:
  33. - tutorial-web-app-operator
  34. env:
  35. - name: WATCH_NAMESPACE
  36. valueFrom:
  37. fieldRef:
  38. apiVersion: v1
  39. fieldPath: metadata.namespace
  40. - name: OPERATOR_NAME
  41. value: tutorial-web-app-operator
  42. image: 'quay.io/integreatly/tutorial-web-app-operator:v0.0.17'
  43. imagePullPolicy: Always
  44. name: tutorial-web-app-operator
  45. ports:
  46. - containerPort: 60000
  47. name: metrics
  48. protocol: TCP
  49. resources: {}
  50. terminationMessagePath: /dev/termination-log
  51. terminationMessagePolicy: File
  52. dnsPolicy: ClusterFirst
  53. restartPolicy: Always
  54. schedulerName: default-scheduler
  55. securityContext: {}
  56. serviceAccount: tutorial-web-app-operator
  57. serviceAccountName: tutorial-web-app-operator
  58. terminationGracePeriodSeconds: 30
  59. status:
  60. availableReplicas: 1
  61. conditions:
  62. - lastTransitionTime: '2019-09-05T12:07:19Z'
  63. lastUpdateTime: '2019-09-05T12:07:19Z'
  64. message: Deployment has minimum availability.
  65. reason: MinimumReplicasAvailable
  66. status: 'True'
  67. type: Available
  68. - lastTransitionTime: '2019-09-05T12:06:28Z'
  69. lastUpdateTime: '2019-09-05T12:07:19Z'
  70. message: >-
  71. ReplicaSet "tutorial-web-app-operator-58d9c4684b" has successfully
  72. progressed.
  73. reason: NewReplicaSetAvailable
  74. status: 'True'
  75. type: Progressing
  76. observedGeneration: 1
  77. readyReplicas: 1
  78. replicas: 1
  79. updatedReplicas: 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement