Public service announcement…
If you are using a load built after Friday, you may see the stx-openstack apply failing - the symptom will be that the ceph-pools-audit pod will be scheduled to run on controller-1 and will be stuck in the ImagePullBackOff
state. The following bug is tracking the issue: https://bugs.launchpad.net/starlingx/+bug/1819720
To work around this, you can do the following on controller-1 (as root):
export KUBECONFIG=/etc/kubernetes/admin.conf
export REGISTRY_HOST=192.168.204.2
export REGISTRY_PORT=9001
export REGISTRY=${REGISTRY_HOST}:${REGISTRY_PORT}
docker login $REGISTRY
docker pull $REGISTRY/docker.io/port/ceph-config-helper:v1.10.3
You can then redo your “system application-apply stx-openstack” and all should be good.
Bart