Skip to content

Changes build to publish docker images to all OCIR regions #195

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 8, 2018
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
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

REGISTRY := wcr.io/oracle
REGISTRY := iad.ocir.io/oracle
PKG := github.com/oracle/oci-cloud-controller-manager
BIN := oci-cloud-controller-manager
IMAGE := $(REGISTRY)/$(BIN)
Expand Down
2 changes: 1 addition & 1 deletion manifests/oci-cloud-controller-manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ spec:
serviceAccountName: cloud-controller-manager
containers:
- name: oci-cloud-controller-manager
image: wcr.io/oracle/oci-cloud-controller-manager:0.4.0
image: iad.ocir.io/oracle/oci-cloud-controller-manager:0.4.0
args:
- --cloud-config=/etc/oci/cloud-provider.yaml
- --cloud-provider=oci
Expand Down
32 changes: 31 additions & 1 deletion wercker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,40 @@ push:
chmod +x /oci-cloud-controller-manager

- internal/docker-push:
repository: wcr.io/oracle/oci-cloud-controller-manager
repository: iad.ocir.io/oracle/oci-cloud-controller-manager
tag: $VERSION
entrypoint: /oci-cloud-controller-manager
user: 65534 # nobody
registry: https://iad.ocir.io/v2
username: $OCIRUSERNAME
password: $OCIRPASSWORD

- internal/docker-push:
repository: lhr.ocir.io/oracle/oci-cloud-controller-manager
tag: $VERSION
entrypoint: /oci-cloud-controller-manager
user: 65534 # nobody
registry: https://lhr.ocir.io/v2
username: $OCIRUSERNAME
password: $OCIRPASSWORD

- internal/docker-push:
repository: phx.ocir.io/oracle/oci-cloud-controller-manager
tag: $VERSION
entrypoint: /oci-cloud-controller-manager
user: 65534 # nobody
registry: https://phx.ocir.io/v2
username: $OCIRUSERNAME
password: $OCIRPASSWORD

- internal/docker-push:
repository: fra.ocir.io/oracle/oci-cloud-controller-manager
tag: $VERSION
entrypoint: /oci-cloud-controller-manager
user: 65534 # nobody
registry: https://fra.ocir.io/v2
username: $OCIRUSERNAME
password: $OCIRPASSWORD

release:
box:
Expand Down