Skip to content

0.4.3

Compare
Choose a tag to compare
@rusenask rusenask released this 04 Aug 07:32
· 1112 commits to master since this release

Added:

Private registry support when secrets are created through:

kubectl create secret docker-registry myregistrykey --docker-server=https://index.docker.io/v1/ --docker-username=<user> --docker-password=<pass> --docker-email=<email>

For Kubernetes provider - nothing is needed to be done from user (except adding secret to either deployment pod spec or binding to your account).

For Helm provider, make sure it has standard labels of app and release, Keel is using them to identify particular pods that belong to each Helm release:

  labels:
    app: {{ template "name" . }}
    chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
    release: {{ .Release.Name }}
    heritage: {{ .Release.Service }

Fixed:
A problem with non semver tags, ie: myimage:50 being replaced to myimage:50.0.0