diff --git a/charts/athens-proxy/templates/_helpers.tpl b/charts/athens-proxy/templates/_helpers.tpl index 24d5289e..ec6c6517 100644 --- a/charts/athens-proxy/templates/_helpers.tpl +++ b/charts/athens-proxy/templates/_helpers.tpl @@ -3,8 +3,8 @@ {{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}} {{- end -}} {{- define "livenessPath" -}} -{{- if eq .Values.image.tag "v0.2.0" -}}/{{- else -}}/healthz{{- end -}} +{{- if eq .Values.image.tag "v0.3.0" -}}/{{- else -}}/healthz{{- end -}} {{- end -}} {{- define "readinessPath" -}} -{{- if eq .Values.image.tag "v0.2.0" -}}/{{- else -}}/readyz{{- end -}} +{{- if eq .Values.image.tag "v0.3.0" -}}/{{- else -}}/readyz{{- end -}} {{- end -}} diff --git a/charts/athens-proxy/values.yaml b/charts/athens-proxy/values.yaml index 081317dd..7711ff0a 100644 --- a/charts/athens-proxy/values.yaml +++ b/charts/athens-proxy/values.yaml @@ -2,7 +2,7 @@ replicaCount: 1 image: registry: docker.io repository: gomods/athens - tag: v0.2.0 + tag: v0.3.0 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images diff --git a/docs/content/install/_index.md b/docs/content/install/_index.md index 41d1430e..75f34d98 100644 --- a/docs/content/install/_index.md +++ b/docs/content/install/_index.md @@ -43,7 +43,7 @@ We follow [semver](https://semver.org). Our Docker images are tagged to indicate * latest = the most recent stable release * canary = the most recent build of master -We strongly recommend using a tagged release, e.g. `gomods/athens:v0.2.0`, instead of the latest or canary tags. +We strongly recommend using a tagged release, e.g. `gomods/athens:v0.3.0`, instead of the latest or canary tags. ## Where to Go from Here diff --git a/docs/content/install/install-on-aci.md b/docs/content/install/install-on-aci.md index 52bb1103..1fb2eefa 100644 --- a/docs/content/install/install-on-aci.md +++ b/docs/content/install/install-on-aci.md @@ -33,7 +33,7 @@ Before executing any of the commands below, make sure you have the following env az container create \ -g "${AZURE_ATHENS_RESOURCE_GROUP}" \ -n "${AZURE_ATHENS_CONTAINER_NAME}-${LOCATION}" \ ---image gomods/athens:v0.2.0 \ +--image gomods/athens:v0.3.0 \ -e "ATHENS_STORAGE_TYPE=disk" "ATHENS_DISK_STORAGE_ROOT=/var/lib/athens" \ --ip-address=Public \ --dns-name="${AZURE_ATHENS_DNS_NAME}" \ @@ -55,7 +55,7 @@ Then run the create command: az container create \ -g "${AZURE_ATHENS_RESOURCE_GROUP}" \ -n "${AZURE_ATHENS_CONTAINER_NAME}-${LOCATION}" \ ---image gomods/athens:v0.2.0 \ +--image gomods/athens:v0.3.0 \ -e "ATHENS_STORAGE_TYPE=mongo" "ATHENS_MONGO_STORAGE_URL=${AZURE_ATHENS_MONGO_URL}" \ --ip-address=Public \ --dns-name="${AZURE_ATHENS_DNS_NAME}" \ diff --git a/docs/content/install/shared-team-instance.md b/docs/content/install/shared-team-instance.md index 6344f9f5..6e2f339d 100644 --- a/docs/content/install/shared-team-instance.md +++ b/docs/content/install/shared-team-instance.md @@ -18,7 +18,7 @@ Athens currently supports a number of storage drivers. For local, use we recomme In order to run Athens with disk storage, you will next need to identify where you would like to persist modules. In the example below, we will create a new directory named `athens-storage` in our current directory. Now you are ready to run Athens with disk storage enabled. To enable disk storage, you need to set the `ATHENS_STORAGE_TYPE` and `ATHENS_DISK_STORAGE_ROOT` environment variables when you run the Docker container. The examples below use the `:latest` Docker tags for simplicity, however we strongly recommend that after your environment is up and running that you switch to using -an explicit version (for example `:v0.2.0`). +an explicit version (for example `:v0.3.0`). **Bash** ```bash