Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
ARM
k8s
Kured
Commits
6f8d36e8
Unverified
Commit
6f8d36e8
authored
Oct 08, 2021
by
Daniel Holbach
Committed by
GitHub
Oct 08, 2021
Browse files
Merge pull request #445 from weaveworks/revert-439-feature/quay-registry
Revert "Add quay.io as second registry"
parents
07942534
688346e8
Changes
3
Hide whitespace changes
Inline
Side-by-side
.github/workflows/on-main-push.yaml
View file @
6f8d36e8
...
...
@@ -29,13 +29,6 @@ jobs:
username
:
${{ secrets.DOCKERHUB_USERNAME_WEAVEWORKSKUREDCI }}
password
:
${{ secrets.DOCKERHUB_TOKEN_WEAVEWORKSKUREDCI }}
-
name
:
Login to quay.io
uses
:
docker/login-action@v1
with
:
registry
:
quay.io
username
:
${{ secrets.QUAYIO_USERNAME_WEAVEWORKSKUREDCI }}
password
:
${{ secrets.QUAYIO_TOKEN_WEAVEWORKSKUREDCI }}
-
name
:
Build image
run
:
|
make DH_ORG="${{ github.repository_owner }}" image
...
...
.github/workflows/on-tag.yaml
View file @
6f8d36e8
...
...
@@ -37,13 +37,6 @@ jobs:
username
:
${{ secrets.DOCKERHUB_USERNAME_WEAVEWORKSKUREDCI }}
password
:
${{ secrets.DOCKERHUB_TOKEN_WEAVEWORKSKUREDCI }}
-
name
:
Login to quay.io
uses
:
docker/login-action@v1
with
:
registry
:
quay.io
username
:
${{ secrets.QUAYIO_USERNAME_WEAVEWORKSKUREDCI }}
password
:
${{ secrets.QUAYIO_TOKEN_WEAVEWORKSKUREDCI }}
-
name
:
Publish image
run
:
|
make DH_ORG="${{ github.repository_owner }}" VERSION="${{ steps.tags.outputs.version }}" publish-image
Makefile
View file @
6f8d36e8
...
...
@@ -24,14 +24,12 @@ build/.image.done: cmd/kured/Dockerfile cmd/kured/kured
cp
$^
build
$(SUDO)
docker build
-t
docker.io/
$(DH_ORG)
/kured
-f
build/Dockerfile ./build
$(SUDO)
docker tag docker.io/
$(DH_ORG)
/kured docker.io/
$(DH_ORG)
/kured:
$(VERSION)
$(SUDO)
docker tag docker.io/
$(DH_ORG)
/kured quay.io/
$(DH_ORG)
/kured:
$(VERSION)
touch
$@
image
:
build/.image.done
publish-image
:
image
$(SUDO)
docker push docker.io/
$(DH_ORG)
/kured:
$(VERSION)
$(SUDO)
docker push quay.io/
$(DH_ORG)
/kured:
$(VERSION)
minikube-publish
:
image
$(SUDO)
docker save docker.io/
$(DH_ORG)
/kured |
(
eval
$$
(
minikube docker-env
)
&&
docker load
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment