Advertisement
Guest User

wallabag

a guest
Aug 26th, 2021
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.66 KB | None | 0 0
  1. spec:
  2. containers:
  3. - env:
  4. - name: SYMFONY__ENV__DATABASE_DRIVER
  5. value: pdo_pgsql
  6. - name: SYMFONY__ENV__DATABASE_HOST
  7. value: postgresql
  8. - name: SYMFONY__ENV__DATABASE_NAME
  9. value: wallabag
  10. - name: SYMFONY__ENV__DATABASE_PORT
  11. value: "5432"
  12. - name: SYMFONY__ENV__DATABASE_USER
  13. value: rancher
  14. - name: SYMFONY__ENV__DOMAIN_NAME
  15. value: http://192.168.1.158:5808
  16. - name: SYMFONY__ENV__MAILER_HOST
  17. valueFrom:
  18. secretKeyRef:
  19. key: SMTP_HOST
  20. name: smtp
  21. optional: false
  22. - name: SYMFONY__ENV__MAILER_USER
  23. valueFrom:
  24. secretKeyRef:
  25. key: SMTP_USERNAME
  26. name: smtp
  27. optional: false
  28. - name: SYMFONY__ENV__FROM_EMAIL
  29. valueFrom:
  30. secretKeyRef:
  31. key: SMTP_FROM
  32. name: smtp
  33. optional: false
  34. envFrom:
  35. - prefix: SYMFONY__ENV__DATABASE_PASSWORD
  36. secretRef:
  37. name: dbpwd
  38. optional: false
  39. image: wallabag/wallabag
  40. imagePullPolicy: IfNotPresent
  41. name: wallabag
  42. ports:
  43. - containerPort: 80
  44. hostPort: 5808
  45. name: webui
  46. protocol: TCP
  47. resources: {}
  48. securityContext:
  49. allowPrivilegeEscalation: false
  50. capabilities: {}
  51. privileged: false
  52. readOnlyRootFilesystem: false
  53. runAsNonRoot: false
  54. stdin: true
  55. terminationMessagePath: /dev/termination-log
  56. terminationMessagePolicy: File
  57. tty: true
  58. volumeMounts:
  59. - mountPath: /var/www/wallabag/data
  60. name: data
  61. - mountPath: /var/www/wallabag/web/assets/images
  62. name: images
  63. - mountPath: /var/run/secrets/kubernetes.io/serviceaccount
  64. name: default-token-lqrpt
  65. readOnly: true
  66. dnsPolicy: ClusterFirst
  67. enableServiceLinks: true
  68. nodeName: rancher
  69. preemptionPolicy: PreemptLowerPriority
  70. priority: 0
  71. restartPolicy: Always
  72. schedulerName: default-scheduler
  73. securityContext: {}
  74. serviceAccount: default
  75. serviceAccountName: default
  76. terminationGracePeriodSeconds: 30
  77. tolerations:
  78. - effect: NoExecute
  79. key: node.kubernetes.io/not-ready
  80. operator: Exists
  81. tolerationSeconds: 300
  82. - effect: NoExecute
  83. key: node.kubernetes.io/unreachable
  84. operator: Exists
  85. tolerationSeconds: 300
  86. volumes:
  87. - hostPath:
  88. path: /home/rancher/wallabag/data
  89. type: DirectoryOrCreate
  90. name: data
  91. - hostPath:
  92. path: /home/rancher/wallabag/images
  93. type: ""
  94. name: images
  95. - name: default-token-lqrpt
  96. secret:
  97. defaultMode: 420
  98. secretName: default-token-lqrpt
  99. status:
  100. conditions:
  101. - lastProbeTime: null
  102. lastTransitionTime: "2021-08-26T13:13:10Z"
  103. status: "True"
  104. type: Initialized
  105. - lastProbeTime: null
  106. lastTransitionTime: "2021-08-26T13:13:12Z"
  107. status: "True"
  108. type: Ready
  109. - lastProbeTime: null
  110. lastTransitionTime: "2021-08-26T13:13:12Z"
  111. status: "True"
  112. type: ContainersReady
  113. - lastProbeTime: null
  114. lastTransitionTime: "2021-08-26T13:13:10Z"
  115. status: "True"
  116. type: PodScheduled
  117. containerStatuses:
  118. - containerID: docker://308d7705cac0e5a1576dbe013cbb5e6aa138d9cc09e783c8f837c37672e9cfb9
  119. image: wallabag/wallabag:latest
  120. imageID: docker-pullable://wallabag/wallabag@sha256:c9ed666dd7ee34edf16de08f3b94fa588f414cd5daa1c92a64c5c696a5766390
  121. lastState: {}
  122. name: wallabag
  123. ready: true
  124. restartCount: 0
  125. started: true
  126. state:
  127. running:
  128. startedAt: "2021-08-26T13:13:12Z"
  129. hostIP: 192.168.1.158
  130. phase: Running
  131. podIP: 10.42.0.101
  132. podIPs:
  133. - ip: 10.42.0.101
  134. qosClass: BestEffort
  135. startTime: "2021-08-26T13:13:10Z"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement