Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/minghsu0107/update-kustomization
A CI plugin for updating image tags with kustomize.
https://github.com/minghsu0107/update-kustomization
cicd droneci gitops kustomize
Last synced: 2 months ago
JSON representation
A CI plugin for updating image tags with kustomize.
- Host: GitHub
- URL: https://github.com/minghsu0107/update-kustomization
- Owner: minghsu0107
- Created: 2021-06-03T10:25:25.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-07-16T06:52:48.000Z (over 2 years ago)
- Last Synced: 2024-05-19T00:35:44.446Z (8 months ago)
- Topics: cicd, droneci, gitops, kustomize
- Language: Shell
- Homepage:
- Size: 27.3 KB
- Stars: 6
- Watchers: 1
- Forks: 10
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Update Kustomization
An CI image for updating image tags using kustomize.Environment variables:
- `SSH_KEY`: Base64-encoded private ssh key of `MANIFEST_USER`
- `MANIFEST_HOST`: Manifest git server host
- `MANIFEST_USER`: Manifest git user name
- `MANIFEST_USER_EMAIL`: Manifest git user email
- `MANIFEST_REPO`: Manifest git repository
- `MANIFEST_BRANCH`: Manifest repository branch
- `IMAGES`: Updated images (comma-separated list)
- `IMAGE_TAG`: Image tag generated in current build
- `KUSTOMIZATION`: Kustomization path relative to the project root
## Drone Usage Example
```yaml
kind: pipeline
name: publish-mysvc1
steps:
- name: publish
image: plugins/docker
settings:
context: mysvc1
dockerfile: mysvc1/Dockerfile
username:
from_secret: docker_username
password:
from_secret: docker_password
registry: harbor.mycompany.com
repo: harbor.mycompany.com/myuser/mysvc1
tags:
- ${DRONE_COMMIT_BRANCH}-${DRONE_COMMIT_SHA:0:7}
- latest
when:
event: push---
kind: pipeline
name: publish-mysvc2
steps:
- name: publish
image: plugins/docker
settings:
context: mysvc2
dockerfile: mysvc2/Dockerfile
username:
from_secret: docker_username
password:
from_secret: docker_password
registry: harbor.mycompany.com
repo: harbor.mycompany.com/myuser/mysvc2
tags:
- ${DRONE_COMMIT_BRANCH}-${DRONE_COMMIT_SHA:0:7}
- latest
when:
event: push
---
kind: pipeline
name: update-kustomization
steps:
- name: kustomization
pull: if-not-exists
image: minghsu0107/update-kustomization
environment:
SSH_KEY:
from_secret: ssh_key
MANIFEST_HOST: git.mycompany.com
MANIFEST_USER: myuser
MANIFEST_USER_EMAIL: [email protected]
MANIFEST_REPO: myapp-manifests
MANIFEST_BRANCH: main
IMAGES: harbor.mycompany.com/myuser/mysvc1,harbor.mycompany.com/myuser/mysvc2
IMAGE_TAG: ${DRONE_COMMIT_BRANCH}-${DRONE_COMMIT_SHA:0:7}
KUSTOMIZATION: overlays/production
when:
event: push
depends_on:
- publish-mysvc1
- publish-mysvc2
```
In the above example, the image tag is in the form of `${DRONE_COMMIT_BRANCH}-${DRONE_COMMIT_SHA:0:7}`, where `DRONE_COMMIT_BRANCH` and `DRONE_COMMIT_SHA` are environment variables provided by Drone at run time.