Skip to content
This repository has been archived by the owner on Oct 24, 2023. It is now read-only.

ci: update dev image to deis/docker-go-dev v1.29.0 #4195

Merged
merged 2 commits into from
Jan 26, 2021
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 .devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Go for aks-engine",
"image": "quay.io/deis/go-dev:v1.28.4",
"image": "mcr.microsoft.com/oss/azcu/go-dev:v1.29.0",
"extensions": [
"ms-vscode.go"
],
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nightly-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
docker run --rm \
-v ${GITHUB_WORKSPACE}:/go/src/github.com/Azure/aks-engine \
-w /go/src/github.com/Azure/aks-engine \
quay.io/deis/go-dev:v1.27.3 make dist
mcr.microsoft.com/oss/azcu/go-dev:v1.29.0 make dist

- name: Rename outputs
run: |
Expand All @@ -34,4 +34,4 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}
tag: nightly
files: |
outputs/*
outputs/*
2 changes: 1 addition & 1 deletion .pipelines/pr-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ pr:
resources:
containers:
- container: dev1
image: quay.io/deis/go-dev:v1.28.4
image: mcr.microsoft.com/oss/azcu/go-dev:v1.29.0

jobs:
- job: unit_tests
Expand Down
2 changes: 1 addition & 1 deletion .pipelines/vhd-builder-ubuntu-gen2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ trigger: none
# - POST a new SKU to azure marketplace

variables:
CONTAINER_IMAGE: 'quay.io/deis/go-dev:v1.28.4'
CONTAINER_IMAGE: 'mcr.microsoft.com/oss/azcu/go-dev:v1.29.0'

phases:
- phase: build_vhd
Expand Down
2 changes: 1 addition & 1 deletion .pipelines/vhd-builder.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ trigger: none
# - POST a new SKU to azure marketplace

variables:
CONTAINER_IMAGE: 'quay.io/deis/go-dev:v1.28.4'
CONTAINER_IMAGE: 'mcr.microsoft.com/oss/azcu/go-dev:v1.29.0'

phases:
- phase: build_vhd
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ ifeq ($(GITTAG),)
GITTAG := $(VERSION_SHORT)
endif

DEV_ENV_IMAGE := quay.io/deis/go-dev:v1.28.4
DEV_ENV_IMAGE := mcr.microsoft.com/oss/azcu/go-dev:v1.29.0
DEV_ENV_WORK_DIR := /aks-engine
DEV_ENV_OPTS := --rm -v $(GOPATH)/pkg/mod:/go/pkg/mod -v $(CURDIR):$(DEV_ENV_WORK_DIR) -w $(DEV_ENV_WORK_DIR) $(DEV_ENV_VARS)
DEV_ENV_CMD := docker run $(DEV_ENV_OPTS) $(DEV_ENV_IMAGE)
Expand Down
2 changes: 1 addition & 1 deletion makedev.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$DEV_ENV_IMAGE = "quay.io/deis/go-dev:v1.28.4"
$DEV_ENV_IMAGE = "mcr.microsoft.com/oss/azcu/go-dev:v1.29.0"
$DEV_ENV_WORK_DIR = "/aks-engine"

# Ensure docker is configured for linux containers
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ spec:
- linux
containers:
- name: large-container
image: quay.io/deis/go-dev:v1.27.3
image: mcr.microsoft.com/oss/azcu/go-dev:v1.29.0
imagePullPolicy: IfNotPresent
command: ["/bin/sh"]
args: ["-c", "while true; do sleep 1000; done"]