Skip to content
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

Rename repo pkg #72

Merged
merged 3 commits into from
Nov 15, 2022
Merged
Show file tree
Hide file tree
Changes from 2 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
6 changes: 3 additions & 3 deletions .github/workflows/image-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
tags:
- 'v*.*.*'
env:
image-push-owner: 'maiqueb'
image-push-owner: 'k8snetworkplumbingwg'
jobs:
push-amd64:
name: Image push/amd64
Expand All @@ -19,15 +19,15 @@ jobs:
uses: docker/setup-buildx-action@v1

- name: Login to Container Registry
if: github.repository_owner == 'maiqueb'
if: github.repository_owner == 'k8snetworkplumbingwg'
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Push container image
if: github.repository_owner == 'maiqueb'
if: github.repository_owner == 'k8snetworkplumbingwg'
uses: docker/build-push-action@v2
with:
context: .
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
GO ?= go
OCI_BIN ?= docker

IMAGE_REGISTRY ?= ghcr.io/maiqueb
IMAGE_REGISTRY ?= ghcr.io/k8snetworkplumbingwg
IMAGE_NAME ?= multus-dynamic-networks-controller
IMAGE_TAG ?= latest-amd64
NAMESPACE ?= kube-system
Expand Down
2 changes: 1 addition & 1 deletion hack/e2e-kind-cluster-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ set -xe

CNI_VERSION=${CNI_VERSION:-0.4.0}
OCI_BIN=${OCI_BIN:-docker}
IMG_REGISTRY=${IMAGE_REGISTRY:-localhost:5000/maiqueb}
IMG_REGISTRY=${IMAGE_REGISTRY:-localhost:5000/k8snetworkplumbingwg}
IMG_TAG="latest"

setup_cluster() {
Expand Down
2 changes: 1 addition & 1 deletion manifests/crio-dynamic-networks-controller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ spec:
valueFrom:
fieldRef:
fieldPath: spec.nodeName
image: ghcr.io/maiqueb/multus-dynamic-networks-controller:latest-amd64
image: ghcr.io/k8snetworkplumbingwg/multus-dynamic-networks-controller:latest-amd64
command: [ "/dynamic-networks-controller" ]
args:
- "-config=/etc/dynamic-networks-controller/dynamic-networks-config.json"
Expand Down
2 changes: 1 addition & 1 deletion manifests/dynamic-networks-controller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ spec:
valueFrom:
fieldRef:
fieldPath: spec.nodeName
image: ghcr.io/maiqueb/multus-dynamic-networks-controller:latest-amd64
image: ghcr.io/k8snetworkplumbingwg/multus-dynamic-networks-controller:latest-amd64
command: [ "/dynamic-networks-controller" ]
args:
- "-config=/etc/dynamic-networks-controller/dynamic-networks-config.json"
Expand Down