Advertisement
Guest User

Untitled

a guest
Dec 1st, 2020
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.17 KB | None | 0 0
  1. kind: Deployment
  2. apiVersion: apps/v1
  3. metadata:
  4. name: auth-server
  5. namespace: default
  6. selfLink: /apis/apps/v1/namespaces/default/deployments/auth-server
  7. uid: 32103726-8a3d-473a-a95a-e3be0bb73e81
  8. resourceVersion: '156668'
  9. generation: 3
  10. creationTimestamp: '2020-12-01T12:23:05Z'
  11. labels:
  12. app: auth-server
  13. annotations:
  14. deployment.kubernetes.io/revision: '1'
  15. spec:
  16. replicas: 1
  17. selector:
  18. matchLabels:
  19. app: auth-server
  20. template:
  21. metadata:
  22. creationTimestamp: null
  23. labels:
  24. app: auth-server
  25. annotations:
  26. prometheus.io/path: /user-api/actuator/prometheus
  27. prometheus.io/port: '8080'
  28. prometheus.io/scrape: 'true'
  29. spec:
  30. volumes:
  31. - name: config
  32. configMap:
  33. name: auth-server-config
  34. defaultMode: 420
  35. containers:
  36. - name: auth-server
  37. image: auth-server
  38. ports:
  39. - containerPort: 8882
  40. protocol: TCP
  41. resources: {}
  42. volumeMounts:
  43. - name: config
  44. mountPath: /config
  45. terminationMessagePath: /dev/termination-log
  46. terminationMessagePolicy: File
  47. imagePullPolicy: Never
  48. restartPolicy: Always
  49. terminationGracePeriodSeconds: 30
  50. dnsPolicy: ClusterFirst
  51. securityContext: {}
  52. schedulerName: default-scheduler
  53. strategy:
  54. type: RollingUpdate
  55. rollingUpdate:
  56. maxUnavailable: 25%
  57. maxSurge: 25%
  58. revisionHistoryLimit: 10
  59. progressDeadlineSeconds: 600
  60. status:
  61. observedGeneration: 3
  62. replicas: 1
  63. updatedReplicas: 1
  64. readyReplicas: 1
  65. availableReplicas: 1
  66. conditions:
  67. - type: Progressing
  68. status: 'True'
  69. lastUpdateTime: '2020-12-01T12:23:06Z'
  70. lastTransitionTime: '2020-12-01T12:23:05Z'
  71. reason: NewReplicaSetAvailable
  72. message: ReplicaSet "auth-server-789bbc8977" has successfully progressed.
  73. - type: Available
  74. status: 'True'
  75. lastUpdateTime: '2020-12-01T21:05:56Z'
  76. lastTransitionTime: '2020-12-01T21:05:56Z'
  77. reason: MinimumReplicasAvailable
  78. message: Deployment has minimum availability.
  79.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement