diff --git a/roles/openshift-apps/asknot/files/deploymentconfig.yml b/roles/openshift-apps/asknot/files/deploymentconfig.yml deleted file mode 100644 index def5c17ee3..0000000000 --- a/roles/openshift-apps/asknot/files/deploymentconfig.yml +++ /dev/null @@ -1,48 +0,0 @@ ---- -apiVersion: apps.openshift.io/v1 -kind: DeploymentConfig -metadata: - name: asknot - labels: - app: asknot - service: asknot -spec: - replicas: 1 - selector: - app: asknot - service: asknot - template: - metadata: - labels: - app: asknot - service: asknot - spec: - containers: - - name: asknot - image: registry/asknot:latest - ports: - - containerPort: 8080 - volumeMounts: - readinessProbe: - timeoutSeconds: 5 - initialDelaySeconds: 60 - httpGet: - path: / - port: 8080 - livenessProbe: - timeoutSeconds: 5 - initialDelaySeconds: 60 - httpGet: - path: / - port: 8080 - resources: - volumes: - triggers: - - type: ImageChange - imageChangeParams: - automatic: true - containerNames: - - "asknot" - from: - kind: ImageStreamTag - name: asknot:latest