https://github.com/linuxsuren/helm-docker
Helm docker
https://github.com/linuxsuren/helm-docker
Last synced: 7 months ago
JSON representation
Helm docker
- Host: GitHub
- URL: https://github.com/linuxsuren/helm-docker
- Owner: LinuxSuRen
- License: apache-2.0
- Created: 2024-02-05T07:21:59.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-02-07T09:45:55.000Z (about 2 years ago)
- Last Synced: 2025-02-05T03:16:23.794Z (about 1 year ago)
- Language: Shell
- Size: 12.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# helm-docker
It contains the `helm` binary file. And some useful shell script file:
* `helm-build-and-push.sh` could login with the oci registry, then package and push it
## Argo Workflow
```yaml
- name: helm-build
inputs:
parameters:
- name: source
default: "/work"
- name: filename
- name: repo
container:
image: docker.io/linuxsuren/helm-docker:master-v3.14.0
args:
- sh
- /workspace/helm-build-and-push.sh
- 172.11.0.6:30002
- admin
- Harbor12345
- "{{inputs.parameters.repo}}"
- "{{inputs.parameters.source}}"
- "{{inputs.parameters.filename}}"
workingDir: /work
volumeMounts:
- name: work
mountPath: /work
```