Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nickboldt/d3c1aac2ce240c7b6f95123d3274b220 to your computer and use it in GitHub Desktop.
Save nickboldt/d3c1aac2ce240c7b6f95123d3274b220 to your computer and use it in GitHub Desktop.
get.image.properties.in.che.properties.sh
wget https://raw.githubusercontent.com/eclipse/che/master/assembly/assembly-wsmaster-war/src/main/webapp/WEB-INF/classes/che/che.properties -q -O /tmp/che.properties
cat /tmp/che.properties | grep -v "^#\|events" | grep image; echo "";
for d in $(cat /tmp/che.properties | grep -v "^#\|events" | grep image); do PROP=${d%=*}; PROP=$(echo $PROP | tr "[a-z]" "[A-Z]" | sed -e "s@_@__@g" -e "s@\.@_@g"); VAL=${d#*=}; echo " $PROP:'$VAL'"; done
che.workspace.sidecar.image_pull_policy=Always
che.docker.always_pull_image=true
che.infra.kubernetes.pvc.jobs.image=centos:centos7
che.workspace.plugin_broker.init.image=eclipse/che-init-plugin-broker:v0.21
che.workspace.plugin_broker.unified.image=eclipse/che-unified-plugin-broker:v0.21
che.server.secure_exposer.jwtproxy.image=quay.io/eclipse/che-jwtproxy:dbd0578
CHE_WORKSPACE_SIDECAR_IMAGE__PULL__POLICY:'Always'
CHE_DOCKER_ALWAYS__PULL__IMAGE:'true'
CHE_INFRA_KUBERNETES_PVC_JOBS_IMAGE:'centos:centos7'
CHE_WORKSPACE_PLUGIN__BROKER_INIT_IMAGE:'eclipse/che-init-plugin-broker:v0.21'
CHE_WORKSPACE_PLUGIN__BROKER_UNIFIED_IMAGE:'eclipse/che-unified-plugin-broker:v0.21'
CHE_SERVER_SECURE__EXPOSER_JWTPROXY_IMAGE:'quay.io/eclipse/che-jwtproxy:dbd0578'