apiVersion: apps/v1 kind: Deployment metadata: name: silaras spec: template: spec: containers: - name: silaras readinessProbe: failureThreshold: 3 successThreshold: 1 initialDelaySeconds: 10 timeoutSeconds: 1 periodSeconds: 10 httpGet: scheme: HTTP port: 80 path: /login livenessProbe: failureThreshold: 3 successThreshold: 1 initialDelaySeconds: 60 timeoutSeconds: 1 periodSeconds: 60 httpGet: scheme: HTTP port: 80 path: /login startupProbe: failureThreshold: 6 successThreshold: 1 initialDelaySeconds: 0 timeoutSeconds: 1 periodSeconds: 10 httpGet: scheme: HTTP port: 80 path: /login