Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ verify: test build ## tests and builds version-checker

image: ## build docker image
GOARCH=$(ARCH) GOOS=linux CGO_ENABLED=0 go build -o ./bin/version-checker-linux ./cmd/.
docker build -t quay.io/jetstack/version-checker:v0.8.5 .
docker build -t quay.io/jetstack/version-checker:v0.8.6 .

clean: ## clean up created files
rm -rf \
Expand Down
2 changes: 1 addition & 1 deletion deploy/charts/version-checker/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: v2
appVersion: "v0.8.5"
appVersion: "v0.8.6"
version: "v0.8.6"
description: A Helm chart for version-checker
home: https://github.com/jetstack/version-checker
Expand Down
4 changes: 2 additions & 2 deletions deploy/charts/version-checker/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# version-checker

![Version: v0.8.5](https://img.shields.io/badge/Version-v0.8.5-informational?style=flat-square) ![AppVersion: v0.8.5](https://img.shields.io/badge/AppVersion-v0.8.5-informational?style=flat-square)
![Version: v0.8.6](https://img.shields.io/badge/Version-v0.8.6-informational?style=flat-square) ![AppVersion: v0.8.6](https://img.shields.io/badge/AppVersion-v0.8.6-informational?style=flat-square)

A Helm chart for version-checker

Expand Down Expand Up @@ -29,7 +29,7 @@ A Helm chart for version-checker
| ecr.iamRoleArn | string | `nil` | Provide AWS EKS Iam Role ARN following: [Specify A ServiceAccount Role](https://docs.aws.amazon.com/eks/latest/userguide/specify-service-account-role.html) |
| ecr.secretAccessKey | string | `nil` | ECR secret access key for read access to private registries |
| ecr.sessionToken | string | `nil` | ECR session token for read access to private registries |
| env | object | `{}` | Can be used to provide custom environment variables e.g. proxy settings |
| env | list | `[]` | Can be used to provide custom environment variables e.g. proxy settings |
| existingSecret | string | `""` | Provide an existing Secret within the cluster to use for authentication and configuration of version-checker |
| extraVolumeMounts | list | `[]` | Allow for extra Volume Mounts to version-checkers container |
| extraVolumes | list | `[]` | Allow for extra Volumes to be associated to the pod |
Expand Down
2 changes: 1 addition & 1 deletion deploy/yaml/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ spec:
spec:
serviceAccountName: version-checker
containers:
- image: quay.io/jetstack/version-checker:v0.8.5
- image: quay.io/jetstack/version-checker:v0.8.6
imagePullPolicy: Always
ports:
- containerPort: 8080
Expand Down
Loading