Quellcode durchsuchen

Update console liveness probe

Avoid error:
cannot set terminal process group (-1):
Inappropriate ioctl for device bash: no job control in this shell exit

Add message:
webconsole-config.yaml has changed.
Samuel Padgett vor 7 Jahren
Ursprung
Commit
3f2fd78d6a
1 geänderte Dateien mit 2 neuen und 1 gelöschten Zeilen
  1. 2 1
      roles/openshift_web_console/files/console-template.yaml

+ 2 - 1
roles/openshift_web_console/files/console-template.yaml

@@ -42,6 +42,7 @@ objects:
       metadata:
         name: webconsole
         labels:
+          app: openshift-web-console
           webconsole: "true"
       spec:
         serviceAccountName: webconsole
@@ -70,12 +71,12 @@ objects:
             exec:
               command:
                 - /bin/sh
-                - -i
                 - -c
                 - |-
                   if [[ ! -f /tmp/webconsole-config.hash ]]; then \
                     md5sum /var/webconsole-config/webconsole-config.yaml > /tmp/webconsole-config.hash; \
                   elif [[ $(md5sum /var/webconsole-config/webconsole-config.yaml) != $(cat /tmp/webconsole-config.hash) ]]; then \
+                    echo 'webconsole-config.yaml has changed.'; \
                     exit 1; \
                   fi && curl -k -f https://0.0.0.0:8443/console/
           resources: