Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ WORKDIR $REMOTE_SOURCE_DIR/$REMOTE_SOURCE_SUBDIR
USER root
RUN mkdir -p ${DEST_ROOT}/usr/local/bin/

# Remove go.work - not needed for the build and may reference a Go version
# from the CI environment that is higher than the build image provides
RUN rm -f go.work go.work.sum

# cache deps before building and copying source so that we don't need to re-download as much
# and so that source changes don't invalidate our downloaded layer
RUN if [ ! -f $CACHITO_ENV_FILE ]; then go mod download ; fi
Expand Down
2 changes: 1 addition & 1 deletion config/operator/manager_operator_images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ spec:
- name: RELATED_IMAGE_DESIGNATE_OPERATOR_MANAGER_IMAGE_URL
value: quay.io/openstack-k8s-operators/designate-operator@sha256:ef6e455e925ef06fbd12062c577193f25067ef80d128fc958613ed378a1f3563
- name: RELATED_IMAGE_GLANCE_OPERATOR_MANAGER_IMAGE_URL
value: quay.io/openstack-k8s-operators/glance-operator:v0.0.1
value: quay.io/openstack-k8s-operators/glance-operator@sha256:73b39f9ed0920ae594f493d8c5c9e03a5f4b76e3c592c0854a9abdbd7e2813ed
- name: RELATED_IMAGE_HEAT_OPERATOR_MANAGER_IMAGE_URL
value: quay.io/openstack-k8s-operators/heat-operator@sha256:4e9f35bbd71d8477929c20643303737ccfb8542cd8d92b764d01595051df520f
- name: RELATED_IMAGE_HORIZON_OPERATOR_MANAGER_IMAGE_URL
Expand Down
2 changes: 1 addition & 1 deletion hack/export_operator_related_images.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
export RELATED_IMAGE_BARBICAN_OPERATOR_MANAGER_IMAGE_URL=quay.io/openstack-k8s-operators/barbican-operator@sha256:9e31729c86468d77817369acfb447b54f41ead34f44e035def53636504de1eeb
export RELATED_IMAGE_CINDER_OPERATOR_MANAGER_IMAGE_URL=quay.io/openstack-k8s-operators/cinder-operator@sha256:f34e57a702ca9750f51a0785856eae922442c121b04228d646dad95e4e663e05
export RELATED_IMAGE_DESIGNATE_OPERATOR_MANAGER_IMAGE_URL=quay.io/openstack-k8s-operators/designate-operator@sha256:ef6e455e925ef06fbd12062c577193f25067ef80d128fc958613ed378a1f3563
export RELATED_IMAGE_GLANCE_OPERATOR_MANAGER_IMAGE_URL=quay.io/openstack-k8s-operators/glance-operator:v0.0.1
export RELATED_IMAGE_GLANCE_OPERATOR_MANAGER_IMAGE_URL=quay.io/openstack-k8s-operators/glance-operator@sha256:73b39f9ed0920ae594f493d8c5c9e03a5f4b76e3c592c0854a9abdbd7e2813ed
export RELATED_IMAGE_HEAT_OPERATOR_MANAGER_IMAGE_URL=quay.io/openstack-k8s-operators/heat-operator@sha256:4e9f35bbd71d8477929c20643303737ccfb8542cd8d92b764d01595051df520f
export RELATED_IMAGE_HORIZON_OPERATOR_MANAGER_IMAGE_URL=quay.io/openstack-k8s-operators/horizon-operator@sha256:3e7876e1cfc1575e1a17ce06cb20a4d0fa182e4e57721a60f575ede3b59acd5d
export RELATED_IMAGE_INFRA_OPERATOR_MANAGER_IMAGE_URL=quay.io/openstack-k8s-operators/infra-operator@sha256:f58cdc6f0e9457f3cb5f80eb667f290f04d8576b2839cba6845b82b529c88bc9
Expand Down
Loading