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

Helm version 3.15.3 #26

Merged
merged 9 commits into from
Jul 12, 2024
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM projectoss/alpine:3.20.0
LABEL maintainer="projectoss-dinushchathurya"
LABEL description="Docker image for Helm"
LABEL version="3.15.2"
LABEL version="3.15.3"

ENV HELM_VERSION="v3.15.2"
ENV HELM_VERSION="v3.15.3"

RUN apk add --no-cache ca-certificates bash git gnupg jq py-pip
RUN apk add --update -t deps curl gettext
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ The Docker Helm Client Agent is a specialized Docker image that acts as a Helm c
## Usage

```
projectoss/helm-client:v3.15.1
projectoss/helm-client:v3.15.3
```

Sample Jenkins Pipeline Stage
Expand All @@ -31,7 +31,7 @@ Sample Jenkins Pipeline Stage
stage('Package Helm Chart') {
agent {
docker {
image 'projectoss/helm-client:v3.15.1'
image 'projectoss/helm-client:v3.15.3'
}
}
steps {
Expand All @@ -47,7 +47,7 @@ Sample GitHub Action Workflow

```yaml
- name: Check Helm version
uses: docker://projectoss/helm-client:v3.15.1
uses: docker://projectoss/helm-client:v3.15.3
with:
run: |
helm version
Expand Down
Loading