mirror of
https://github.com/aevea/action-kaniko.git
synced 2025-01-30 22:09:37 +01:00
chore: Rename organization to aevea
This commit is contained in:
parent
3e63daf6fe
commit
73a7639472
5 changed files with 20 additions and 20 deletions
2
.github/workflows/pr.yml
vendored
2
.github/workflows/pr.yml
vendored
|
@ -8,4 +8,4 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- name: Run commitsar
|
- name: Run commitsar
|
||||||
uses: docker://commitsar/commitsar
|
uses: docker://aevea/commitsar
|
||||||
|
|
8
.github/workflows/push.yml
vendored
8
.github/workflows/push.yml
vendored
|
@ -9,7 +9,7 @@ jobs:
|
||||||
- uses: actions/checkout@master
|
- uses: actions/checkout@master
|
||||||
|
|
||||||
- name: GitHub Package Registry
|
- name: GitHub Package Registry
|
||||||
uses: outillage/kaniko-action@master
|
uses: aevea/action-kaniko@master
|
||||||
with:
|
with:
|
||||||
registry: docker.pkg.github.com
|
registry: docker.pkg.github.com
|
||||||
password: ${{ secrets.GITHUB_TOKEN }}
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
@ -18,10 +18,10 @@ jobs:
|
||||||
cache_registry: cache
|
cache_registry: cache
|
||||||
|
|
||||||
- name: Dockerhub
|
- name: Dockerhub
|
||||||
uses: outillage/kaniko-action@master
|
uses: aevea/action-kaniko@master
|
||||||
with:
|
with:
|
||||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||||
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||||
image: outillage/kaniko
|
image: aevea/kaniko
|
||||||
cache: true
|
cache: true
|
||||||
cache_registry: outillage/cache
|
cache_registry: aevea/cache
|
||||||
|
|
10
.github/workflows/release.yml
vendored
10
.github/workflows/release.yml
vendored
|
@ -13,12 +13,12 @@ jobs:
|
||||||
uses: actions/checkout@v1
|
uses: actions/checkout@v1
|
||||||
|
|
||||||
- name: Release Notary Action
|
- name: Release Notary Action
|
||||||
uses: docker://commitsar/release-notary
|
uses: docker://aevea/release-notary
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
- name: GitHub Package Registry
|
- name: GitHub Package Registry
|
||||||
uses: outillage/kaniko-action@master
|
uses: aevea/action-kaniko@master
|
||||||
with:
|
with:
|
||||||
registry: docker.pkg.github.com
|
registry: docker.pkg.github.com
|
||||||
password: ${{ secrets.GITHUB_TOKEN }}
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
@ -27,10 +27,10 @@ jobs:
|
||||||
cache_registry: cache
|
cache_registry: cache
|
||||||
|
|
||||||
- name: Dockerhub
|
- name: Dockerhub
|
||||||
uses: outillage/kaniko-action@master
|
uses: aevea/action-kaniko@master
|
||||||
with:
|
with:
|
||||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||||
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||||
image: outillage/kaniko
|
image: aevea/kaniko
|
||||||
cache: true
|
cache: true
|
||||||
cache_registry: outillage/cache
|
cache_registry: aevea/cache
|
||||||
|
|
|
@ -4,5 +4,5 @@ COPY entrypoint.sh /
|
||||||
|
|
||||||
ENTRYPOINT ["/entrypoint.sh"]
|
ENTRYPOINT ["/entrypoint.sh"]
|
||||||
|
|
||||||
LABEL repository="https://github.com/outillage/action-kaniko" \
|
LABEL repository="https://github.com/aevea/action-kaniko" \
|
||||||
maintainer="Alex Viscreanu <alexviscreanu@gmail.com>"
|
maintainer="Alex Viscreanu <alexviscreanu@gmail.com>"
|
||||||
|
|
18
README.md
18
README.md
|
@ -19,13 +19,13 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@master
|
- uses: actions/checkout@master
|
||||||
- name: Kaniko build
|
- name: Kaniko build
|
||||||
uses: outillage/kaniko-action@master
|
uses: aevea/action-kaniko@master
|
||||||
with:
|
with:
|
||||||
image: outillage/kaniko
|
image: aevea/kaniko
|
||||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||||
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||||
cache: true
|
cache: true
|
||||||
cache_registry: outillage/cache
|
cache_registry: aevea/cache
|
||||||
```
|
```
|
||||||
|
|
||||||
## Required Arguments
|
## Required Arguments
|
||||||
|
@ -62,7 +62,7 @@ In this case, the authentication credentials need to be passed via GitHub Action
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
with:
|
with:
|
||||||
image: outillage/kaniko
|
image: aevea/kaniko
|
||||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||||
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||||
```
|
```
|
||||||
|
@ -72,17 +72,17 @@ doesn't work. If you want to use caching with Dockerhub, create a `cache` reposi
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
with:
|
with:
|
||||||
image: outillage/kaniko
|
image: aevea/kaniko
|
||||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||||
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||||
cache: true
|
cache: true
|
||||||
cache_registry: outillage/cache
|
cache_registry: aevea/cache
|
||||||
```
|
```
|
||||||
|
|
||||||
### [docker.pkg.github.com](https://github.com/features/packages)
|
### [docker.pkg.github.com](https://github.com/features/packages)
|
||||||
|
|
||||||
GitHub's docker registry is a bit special. It doesn't allow top-level images, so this action will prefix any image with the GitHub namespace.
|
GitHub's docker registry is a bit special. It doesn't allow top-level images, so this action will prefix any image with the GitHub namespace.
|
||||||
If you want to push your image like `outillage/kaniko-action/kaniko`, you'll only need to pass `kaniko` to this action.
|
If you want to push your image like `aevea/action-kaniko/kaniko`, you'll only need to pass `kaniko` to this action.
|
||||||
|
|
||||||
The authentication is automatically done using the `GITHUB_ACTOR` and `GITHUB_TOKEN` provided from GitHub itself. But as `GITHUB_TOKEN` is not
|
The authentication is automatically done using the `GITHUB_ACTOR` and `GITHUB_TOKEN` provided from GitHub itself. But as `GITHUB_TOKEN` is not
|
||||||
passed by default, it will have to be explicitly set up.
|
passed by default, it will have to be explicitly set up.
|
||||||
|
@ -125,7 +125,7 @@ with:
|
||||||
registry: registry.gitlab.com
|
registry: registry.gitlab.com
|
||||||
username: ${{ secrets.GL_REGISTRY_USERNAME }}
|
username: ${{ secrets.GL_REGISTRY_USERNAME }}
|
||||||
password: ${{ secrets.GL_REGISTRY_PASSWORD }}
|
password: ${{ secrets.GL_REGISTRY_PASSWORD }}
|
||||||
image: outillage/kaniko
|
image: aevea/kaniko
|
||||||
```
|
```
|
||||||
|
|
||||||
> NOTE: As GitLab's registry does support namespacing, Kaniko can natively push cached layers to it, so only `cache: true` is necessary to be
|
> NOTE: As GitLab's registry does support namespacing, Kaniko can natively push cached layers to it, so only `cache: true` is necessary to be
|
||||||
|
@ -136,7 +136,7 @@ with:
|
||||||
registry: registry.gitlab.com
|
registry: registry.gitlab.com
|
||||||
username: ${{ secrets.GL_REGISTRY_USERNAME }}
|
username: ${{ secrets.GL_REGISTRY_USERNAME }}
|
||||||
password: ${{ secrets.GL_REGISTRY_PASSWORD }}
|
password: ${{ secrets.GL_REGISTRY_PASSWORD }}
|
||||||
image: outillage/kaniko
|
image: aevea/kaniko
|
||||||
cache: true
|
cache: true
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue