Skip to content

Commit

Permalink
Use the docker.io registry for "latest" antrea images (#4235)
Browse files Browse the repository at this point in the history
It has been observed that pulling
projects.registry.vmware.com/antrea/antrea-ubuntu:latest will often
fail. This is because the Harbor registry uses a CDN for caching, which
doesn't work well at all when tags are being re-used (in our case, we
re-use the latest tag all the time). While most users should be
installing a released version of antrea (with an immutable tag) and thus
should not suffer from this issue, it can be frustrating for users who
want to install the latest antrea built from the main branch.

As a result, we switch to the docker.io registry whenever the latest tag
is used, and in particular for checked-in manifest files. The Harbor
registry (projects.registry.vmware.com) is still used for all release
assets, and more generally for all images with an immutable tag.

We are able to simplify some infrastructure code because of that, as
built images no longer need to be tagged with
projects.registry.vmware.com.

Signed-off-by: Antonin Bas <[email protected]>
  • Loading branch information
antoninbas authored Sep 26, 2022
1 parent 21c1c06 commit 7216f2a
Show file tree
Hide file tree
Showing 39 changed files with 73 additions and 91 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ jobs:
- name: Build flow-aggregator Docker image
run: make flow-aggregator-image
- name: Check flow-aggregator Docker image
run: docker run projects.registry.vmware.com/antrea/flow-aggregator --version
run: docker run antrea/flow-aggregator --version
- name: Push flow-aggregator Docker image to registry
if: ${{ github.repository == 'antrea-io/antrea' && github.event_name == 'push' && github.ref == 'refs/heads/main' }}
env:
Expand Down
6 changes: 0 additions & 6 deletions .github/workflows/kind.yml
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,6 @@ jobs:
run: |
docker load -i antrea-ubuntu.tar
docker tag antrea/antrea-ubuntu-coverage:latest antrea/antrea-ubuntu:latest
docker tag antrea/antrea-ubuntu-coverage:latest projects.registry.vmware.com/antrea/antrea-ubuntu:latest
- name: Install Kind
run: |
curl -Lo ./kind https://github.com/kubernetes-sigs/kind/releases/download/${KIND_VERSION}/kind-$(uname)-amd64
Expand Down Expand Up @@ -486,7 +485,6 @@ jobs:
run: |
docker load -i antrea-ubuntu.tar
docker tag antrea/antrea-ubuntu-coverage:latest antrea/antrea-ubuntu:latest
docker tag antrea/antrea-ubuntu-coverage:latest projects.registry.vmware.com/antrea/antrea-ubuntu:latest
- name: Install Kind
run: |
curl -Lo ./kind https://github.com/kubernetes-sigs/kind/releases/download/${KIND_VERSION}/kind-$(uname)-amd64
Expand Down Expand Up @@ -529,7 +527,6 @@ jobs:
run: |
docker load -i antrea-ubuntu.tar
docker tag antrea/antrea-ubuntu-coverage:latest antrea/antrea-ubuntu:latest
docker tag antrea/antrea-ubuntu-coverage:latest projects.registry.vmware.com/antrea/antrea-ubuntu:latest
- name: Install Kind
run: |
curl -Lo ./kind https://github.com/kubernetes-sigs/kind/releases/download/${KIND_VERSION}/kind-$(uname)-amd64
Expand Down Expand Up @@ -572,7 +569,6 @@ jobs:
run: |
docker load -i antrea-ubuntu.tar
docker tag antrea/antrea-ubuntu-coverage:latest antrea/antrea-ubuntu:latest
docker tag antrea/antrea-ubuntu-coverage:latest projects.registry.vmware.com/antrea/antrea-ubuntu:latest
- name: Install Kind
run: |
curl -Lo ./kind https://github.com/kubernetes-sigs/kind/releases/download/${KIND_VERSION}/kind-$(uname)-amd64
Expand Down Expand Up @@ -615,7 +611,6 @@ jobs:
run: |
docker load -i antrea-ubuntu.tar
docker tag antrea/antrea-ubuntu-coverage:latest antrea/antrea-ubuntu:latest
docker tag antrea/antrea-ubuntu-coverage:latest projects.registry.vmware.com/antrea/antrea-ubuntu:latest
- name: Install Kind
run: |
curl -Lo ./kind https://github.com/kubernetes-sigs/kind/releases/download/${KIND_VERSION}/kind-$(uname)-amd64
Expand Down Expand Up @@ -650,7 +645,6 @@ jobs:
run: |
docker load -i antrea-ubuntu.tar
docker tag antrea/antrea-ubuntu-coverage:latest antrea/antrea-ubuntu:latest
docker tag antrea/antrea-ubuntu-coverage:latest projects.registry.vmware.com/antrea/antrea-ubuntu:latest
- name: Install Kind
run: |
curl -Lo ./kind https://github.com/kubernetes-sigs/kind/releases/download/${KIND_VERSION}/kind-$(uname)-amd64
Expand Down
15 changes: 0 additions & 15 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -313,8 +313,6 @@ else
docker build --pull -t antrea/antrea-ubuntu:$(DOCKER_IMG_VERSION) -f build/images/Dockerfile.ubuntu $(DOCKER_BUILD_ARGS) .
endif
docker tag antrea/antrea-ubuntu:$(DOCKER_IMG_VERSION) antrea/antrea-ubuntu
docker tag antrea/antrea-ubuntu:$(DOCKER_IMG_VERSION) projects.registry.vmware.com/antrea/antrea-ubuntu
docker tag antrea/antrea-ubuntu:$(DOCKER_IMG_VERSION) projects.registry.vmware.com/antrea/antrea-ubuntu:$(DOCKER_IMG_VERSION)

# Build bins in a golang container, and build the antrea-ubuntu Docker image.
.PHONY: build-ubuntu
Expand All @@ -326,8 +324,6 @@ else
docker build --pull -t antrea/antrea-ubuntu:$(DOCKER_IMG_VERSION) -f build/images/Dockerfile.build.ubuntu $(DOCKER_BUILD_ARGS) .
endif
docker tag antrea/antrea-ubuntu:$(DOCKER_IMG_VERSION) antrea/antrea-ubuntu
docker tag antrea/antrea-ubuntu:$(DOCKER_IMG_VERSION) projects.registry.vmware.com/antrea/antrea-ubuntu
docker tag antrea/antrea-ubuntu:$(DOCKER_IMG_VERSION) projects.registry.vmware.com/antrea/antrea-ubuntu:$(DOCKER_IMG_VERSION)

# Build bins in a golang container, and build the antrea-ubi Docker image.
.PHONY: build-ubi
Expand All @@ -339,8 +335,6 @@ else
docker build --pull -t antrea/antrea-ubi:$(DOCKER_IMG_VERSION) -f build/images/Dockerfile.build.ubi $(DOCKER_BUILD_ARGS) .
endif
docker tag antrea/antrea-ubi:$(DOCKER_IMG_VERSION) antrea/antrea-ubi
docker tag antrea/antrea-ubi:$(DOCKER_IMG_VERSION) projects.registry.vmware.com/antrea/antrea-ubi
docker tag antrea/antrea-ubi:$(DOCKER_IMG_VERSION) projects.registry.vmware.com/antrea/antrea-ubi:$(DOCKER_IMG_VERSION)

.PHONY: build-windows
build-windows:
Expand All @@ -352,8 +346,6 @@ else
docker build --pull -t antrea/antrea-windows:$(DOCKER_IMG_VERSION) -f build/images/Dockerfile.build.windows $(WIN_BUILD_ARGS) .
endif
docker tag antrea/antrea-windows:$(DOCKER_IMG_VERSION) antrea/antrea-windows
docker tag antrea/antrea-windows:$(DOCKER_IMG_VERSION) projects.registry.vmware.com/antrea/antrea-windows
docker tag antrea/antrea-windows:$(DOCKER_IMG_VERSION) projects.registry.vmware.com/antrea/antrea-windows:$(DOCKER_IMG_VERSION)

.PHONY: build-ubuntu-coverage
build-ubuntu-coverage:
Expand Down Expand Up @@ -395,8 +387,6 @@ octant-antrea-ubuntu:
@echo "===> Building antrea/octant-antrea-ubuntu Docker image <==="
docker build --pull -t antrea/octant-antrea-ubuntu:$(DOCKER_IMG_VERSION) -f build/images/Dockerfile.octant.ubuntu $(DOCKER_BUILD_ARGS) .
docker tag antrea/octant-antrea-ubuntu:$(DOCKER_IMG_VERSION) antrea/octant-antrea-ubuntu
docker tag antrea/octant-antrea-ubuntu:$(DOCKER_IMG_VERSION) projects.registry.vmware.com/antrea/octant-antrea-ubuntu
docker tag antrea/octant-antrea-ubuntu:$(DOCKER_IMG_VERSION) projects.registry.vmware.com/antrea/octant-antrea-ubuntu:$(DOCKER_IMG_VERSION)

.PHONY: antrea-mc-controller
antrea-mc-controller:
Expand All @@ -407,8 +397,6 @@ else
docker build --pull -t antrea/antrea-mc-controller:$(DOCKER_IMG_VERSION) -f multicluster/build/images/Dockerfile.build $(DOCKER_BUILD_ARGS) .
endif
docker tag antrea/antrea-mc-controller:$(DOCKER_IMG_VERSION) antrea/antrea-mc-controller
docker tag antrea/antrea-mc-controller:$(DOCKER_IMG_VERSION) projects.registry.vmware.com/antrea/antrea-mc-controller
docker tag antrea/antrea-mc-controller:$(DOCKER_IMG_VERSION) projects.registry.vmware.com/antrea/antrea-mc-controller:$(DOCKER_IMG_VERSION)

.PHONY: antrea-mc-controller-coverage
antrea-mc-controller-coverage:
Expand All @@ -419,7 +407,6 @@ else
docker build --pull -t antrea/antrea-mc-controller-coverage:$(DOCKER_IMG_VERSION) -f multicluster/build/images/Dockerfile.build.coverage $(DOCKER_BUILD_ARGS) .
endif
docker tag antrea/antrea-mc-controller-coverage:$(DOCKER_IMG_VERSION) antrea/antrea-mc-controller-coverage
docker tag antrea/antrea-mc-controller-coverage:$(DOCKER_IMG_VERSION) projects.registry.vmware.com/antrea/antrea-mc-controller-coverage

.PHONY: flow-aggregator-image
flow-aggregator-image:
Expand All @@ -430,8 +417,6 @@ else
docker build --pull -t antrea/flow-aggregator:$(DOCKER_IMG_VERSION) -f build/images/flow-aggregator/Dockerfile $(DOCKER_BUILD_ARGS) .
endif
docker tag antrea/flow-aggregator:$(DOCKER_IMG_VERSION) antrea/flow-aggregator
docker tag antrea/flow-aggregator:$(DOCKER_IMG_VERSION) projects.registry.vmware.com/antrea/flow-aggregator
docker tag antrea/flow-aggregator:$(DOCKER_IMG_VERSION) projects.registry.vmware.com/antrea/flow-aggregator:$(DOCKER_IMG_VERSION)

.PHONY: flow-aggregator-ubuntu-coverage
flow-aggregator-ubuntu-coverage:
Expand Down
2 changes: 1 addition & 1 deletion build/charts/antrea/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ Kubernetes: `>= 1.16.0-0`
| flowCollector.flowPollInterval | string | `"5s"` | Determines how often the flow exporter polls for new connections. |
| flowCollector.idleFlowExportTimeout | string | `"15s"` | timeout after which a flow record is sent to the collector for idle flows. |
| hostGateway | string | `"antrea-gw0"` | Name of the interface antrea-agent will create and use for host <-> Pod communication. |
| image | object | `{"pullPolicy":"IfNotPresent","repository":"projects.registry.vmware.com/antrea/antrea-ubuntu","tag":""}` | Container image to use for Antrea components. |
| image | object | `{"pullPolicy":"IfNotPresent","repository":"antrea/antrea-ubuntu","tag":""}` | Container image to use for Antrea components. |
| ipsec.authenticationMode | string | `"psk"` | The authentication mode to use for IPsec. Must be one of "psk" or "cert". |
| ipsec.csrSigner | object | `{"autoApprove":true,"selfSignedCA":true}` | CSR signer configuration when the authenticationMode is "cert". |
| ipsec.csrSigner.autoApprove | bool | `true` | - Enable auto approval of Antrea signer for IPsec certificates. |
Expand Down
2 changes: 1 addition & 1 deletion build/charts/antrea/templates/simulator/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ spec:
path: /var/log
containers:
- name: simulator
image: projects.registry.vmware.com/antrea/antrea-ubuntu-simulator:latest
image: antrea/antrea-ubuntu-simulator:latest
imagePullPolicy: IfNotPresent
command: ['/usr/local/bin/antrea-agent-simulator', '-v', '5']
env:
Expand Down
2 changes: 1 addition & 1 deletion build/charts/antrea/values.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -- Container image to use for Antrea components.
image:
repository: "projects.registry.vmware.com/antrea/antrea-ubuntu"
repository: "antrea/antrea-ubuntu"
pullPolicy: "IfNotPresent"
tag: ""

Expand Down
2 changes: 1 addition & 1 deletion build/charts/flow-aggregator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Kubernetes: `>= 1.16.0-0`
| flowCollector.enable | bool | `false` | Determine whether to enable exporting flow records to external flow collector. |
| flowCollector.observationDomainID | string | `""` | Provide the 32-bit Observation Domain ID which will uniquely identify this instance of the flow aggregator to an external flow collector. If omitted, an Observation Domain ID will be generated from the persistent cluster UUID generated by Antrea. |
| flowCollector.recordFormat | string | `"IPFIX"` | Provide format for records sent to the configured flow collector. Supported formats are IPFIX and JSON. |
| image | object | `{"pullPolicy":"IfNotPresent","repository":"projects.registry.vmware.com/antrea/flow-aggregator","tag":""}` | Container image used by Flow Aggregator. |
| image | object | `{"pullPolicy":"IfNotPresent","repository":"antrea/flow-aggregator","tag":""}` | Container image used by Flow Aggregator. |
| inactiveFlowRecordTimeout | string | `"90s"` | Provide the inactive flow record timeout as a duration string. Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h". |
| logVerbosity | int | `0` | |
| recordContents.podLabels | bool | `false` | Determine whether source and destination Pod labels will be included in the flow records. |
Expand Down
2 changes: 1 addition & 1 deletion build/charts/flow-aggregator/values.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -- Container image used by Flow Aggregator.
image:
repository: "projects.registry.vmware.com/antrea/flow-aggregator"
repository: "antrea/flow-aggregator"
pullPolicy: "IfNotPresent"
tag: ""

Expand Down
8 changes: 4 additions & 4 deletions build/yamls/antrea-aks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4161,7 +4161,7 @@ spec:
initContainers:
containers:
- name: install-cni
image: "projects.registry.vmware.com/antrea/antrea-ubuntu:latest"
image: "antrea/antrea-ubuntu:latest"
imagePullPolicy: IfNotPresent
resources:
requests:
Expand Down Expand Up @@ -4195,7 +4195,7 @@ spec:
- name: host-var-run-antrea
mountPath: /var/run/antrea
- name: antrea-agent
image: "projects.registry.vmware.com/antrea/antrea-ubuntu:latest"
image: "antrea/antrea-ubuntu:latest"
imagePullPolicy: IfNotPresent
command: ["antrea-agent"]
# Log to both "/var/log/antrea/" and stderr (so "kubectl logs" can work).-
Expand Down Expand Up @@ -4287,7 +4287,7 @@ spec:
- name: xtables-lock
mountPath: /run/xtables.lock
- name: antrea-ovs
image: "projects.registry.vmware.com/antrea/antrea-ubuntu:latest"
image: "antrea/antrea-ubuntu:latest"
imagePullPolicy: IfNotPresent
resources:
requests:
Expand Down Expand Up @@ -4400,7 +4400,7 @@ spec:
serviceAccountName: antrea-controller
containers:
- name: antrea-controller
image: "projects.registry.vmware.com/antrea/antrea-ubuntu:latest"
image: "antrea/antrea-ubuntu:latest"
imagePullPolicy: IfNotPresent
resources:
requests:
Expand Down
8 changes: 4 additions & 4 deletions build/yamls/antrea-eks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4161,7 +4161,7 @@ spec:
initContainers:
containers:
- name: install-cni
image: "projects.registry.vmware.com/antrea/antrea-ubuntu:latest"
image: "antrea/antrea-ubuntu:latest"
imagePullPolicy: IfNotPresent
resources:
requests:
Expand Down Expand Up @@ -4195,7 +4195,7 @@ spec:
- name: host-var-run-antrea
mountPath: /var/run/antrea
- name: antrea-agent
image: "projects.registry.vmware.com/antrea/antrea-ubuntu:latest"
image: "antrea/antrea-ubuntu:latest"
imagePullPolicy: IfNotPresent
command: ["antrea-agent"]
# Log to both "/var/log/antrea/" and stderr (so "kubectl logs" can work).-
Expand Down Expand Up @@ -4289,7 +4289,7 @@ spec:
- name: xtables-lock
mountPath: /run/xtables.lock
- name: antrea-ovs
image: "projects.registry.vmware.com/antrea/antrea-ubuntu:latest"
image: "antrea/antrea-ubuntu:latest"
imagePullPolicy: IfNotPresent
resources:
requests:
Expand Down Expand Up @@ -4402,7 +4402,7 @@ spec:
serviceAccountName: antrea-controller
containers:
- name: antrea-controller
image: "projects.registry.vmware.com/antrea/antrea-ubuntu:latest"
image: "antrea/antrea-ubuntu:latest"
imagePullPolicy: IfNotPresent
resources:
requests:
Expand Down
8 changes: 4 additions & 4 deletions build/yamls/antrea-gke.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4160,7 +4160,7 @@ spec:
serviceAccountName: antrea-agent
initContainers:
- name: install-cni
image: "projects.registry.vmware.com/antrea/antrea-ubuntu:latest"
image: "antrea/antrea-ubuntu:latest"
imagePullPolicy: IfNotPresent
resources:
requests:
Expand Down Expand Up @@ -4194,7 +4194,7 @@ spec:
mountPath: /var/run/antrea
containers:
- name: antrea-agent
image: "projects.registry.vmware.com/antrea/antrea-ubuntu:latest"
image: "antrea/antrea-ubuntu:latest"
imagePullPolicy: IfNotPresent
command: ["antrea-agent"]
# Log to both "/var/log/antrea/" and stderr (so "kubectl logs" can work).-
Expand Down Expand Up @@ -4286,7 +4286,7 @@ spec:
- name: xtables-lock
mountPath: /run/xtables.lock
- name: antrea-ovs
image: "projects.registry.vmware.com/antrea/antrea-ubuntu:latest"
image: "antrea/antrea-ubuntu:latest"
imagePullPolicy: IfNotPresent
resources:
requests:
Expand Down Expand Up @@ -4399,7 +4399,7 @@ spec:
serviceAccountName: antrea-controller
containers:
- name: antrea-controller
image: "projects.registry.vmware.com/antrea/antrea-ubuntu:latest"
image: "antrea/antrea-ubuntu:latest"
imagePullPolicy: IfNotPresent
resources:
requests:
Expand Down
10 changes: 5 additions & 5 deletions build/yamls/antrea-ipsec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4174,7 +4174,7 @@ spec:
serviceAccountName: antrea-agent
initContainers:
- name: install-cni
image: "projects.registry.vmware.com/antrea/antrea-ubuntu:latest"
image: "antrea/antrea-ubuntu:latest"
imagePullPolicy: IfNotPresent
resources:
requests:
Expand Down Expand Up @@ -4208,7 +4208,7 @@ spec:
mountPath: /var/run/antrea
containers:
- name: antrea-agent
image: "projects.registry.vmware.com/antrea/antrea-ubuntu:latest"
image: "antrea/antrea-ubuntu:latest"
imagePullPolicy: IfNotPresent
command: ["antrea-agent"]
# Log to both "/var/log/antrea/" and stderr (so "kubectl logs" can work).-
Expand Down Expand Up @@ -4309,7 +4309,7 @@ spec:
- name: xtables-lock
mountPath: /run/xtables.lock
- name: antrea-ovs
image: "projects.registry.vmware.com/antrea/antrea-ubuntu:latest"
image: "antrea/antrea-ubuntu:latest"
imagePullPolicy: IfNotPresent
resources:
requests:
Expand Down Expand Up @@ -4346,7 +4346,7 @@ spec:
mountPath: /var/log/openvswitch
subPath: openvswitch
- name: antrea-ipsec
image: "projects.registry.vmware.com/antrea/antrea-ubuntu:latest"
image: "antrea/antrea-ubuntu:latest"
imagePullPolicy: IfNotPresent
resources:
requests:
Expand Down Expand Up @@ -4458,7 +4458,7 @@ spec:
serviceAccountName: antrea-controller
containers:
- name: antrea-controller
image: "projects.registry.vmware.com/antrea/antrea-ubuntu:latest"
image: "antrea/antrea-ubuntu:latest"
imagePullPolicy: IfNotPresent
resources:
requests:
Expand Down
2 changes: 1 addition & 1 deletion build/yamls/antrea-octant.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ spec:
value: "true"
- name: KUBECONFIG
value: /kube/admin.conf
image: projects.registry.vmware.com/antrea/octant-antrea-ubuntu:latest
image: antrea/octant-antrea-ubuntu:latest
imagePullPolicy: IfNotPresent
name: antrea-octant
ports:
Expand Down
4 changes: 2 additions & 2 deletions build/yamls/antrea-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ spec:
valueFrom:
fieldRef:
fieldPath: spec.nodeName
image: projects.registry.vmware.com/antrea/antrea-windows:latest
image: antrea/antrea-windows:latest
imagePullPolicy: IfNotPresent
name: antrea-agent
volumeMounts:
Expand All @@ -230,7 +230,7 @@ spec:
- /k/antrea/Install-WindowsCNI.ps1
command:
- pwsh
image: projects.registry.vmware.com/antrea/antrea-windows:latest
image: antrea/antrea-windows:latest
imagePullPolicy: IfNotPresent
name: install-cni
volumeMounts:
Expand Down
8 changes: 4 additions & 4 deletions build/yamls/antrea.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4160,7 +4160,7 @@ spec:
serviceAccountName: antrea-agent
initContainers:
- name: install-cni
image: "projects.registry.vmware.com/antrea/antrea-ubuntu:latest"
image: "antrea/antrea-ubuntu:latest"
imagePullPolicy: IfNotPresent
resources:
requests:
Expand Down Expand Up @@ -4194,7 +4194,7 @@ spec:
mountPath: /var/run/antrea
containers:
- name: antrea-agent
image: "projects.registry.vmware.com/antrea/antrea-ubuntu:latest"
image: "antrea/antrea-ubuntu:latest"
imagePullPolicy: IfNotPresent
command: ["antrea-agent"]
# Log to both "/var/log/antrea/" and stderr (so "kubectl logs" can work).-
Expand Down Expand Up @@ -4286,7 +4286,7 @@ spec:
- name: xtables-lock
mountPath: /run/xtables.lock
- name: antrea-ovs
image: "projects.registry.vmware.com/antrea/antrea-ubuntu:latest"
image: "antrea/antrea-ubuntu:latest"
imagePullPolicy: IfNotPresent
resources:
requests:
Expand Down Expand Up @@ -4399,7 +4399,7 @@ spec:
serviceAccountName: antrea-controller
containers:
- name: antrea-controller
image: "projects.registry.vmware.com/antrea/antrea-ubuntu:latest"
image: "antrea/antrea-ubuntu:latest"
imagePullPolicy: IfNotPresent
resources:
requests:
Expand Down
2 changes: 1 addition & 1 deletion build/yamls/flow-aggregator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ spec:
secretKeyRef:
key: aws_session_token
name: flow-aggregator-aws-credentials
image: projects.registry.vmware.com/antrea/flow-aggregator:latest
image: antrea/flow-aggregator:latest
imagePullPolicy: IfNotPresent
name: flow-aggregator
ports:
Expand Down
Loading

0 comments on commit 7216f2a

Please sign in to comment.