Skip to content

Commit

Permalink
Merge pull request #3240 from magda-io/issue/3229-connector-minion
Browse files Browse the repository at this point in the history
Issue/3229 connector minion
  • Loading branch information
t83714 authored Oct 15, 2021
2 parents 71452c8 + 66963a5 commit 0e40284
Show file tree
Hide file tree
Showing 194 changed files with 1,213 additions and 768 deletions.
18 changes: 9 additions & 9 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -734,7 +734,7 @@ inttest:registryAuth:
export PGPASSWORD="${DB_PASSWORD:-$(pwgen 16 1)}"
kubectl create secret generic db-main-account-secret --from-literal=postgresql-password=$PGPASSWORD --namespace test2
helm upgrade test2 deploy/helm/local-auth-test-deployment --debug --namespace test2 --install --timeout 1200s --set global.image.repository=registry.gitlab.com/magda-data/magda/data61,global.image.tag=$CI_COMMIT_REF_SLUG,magda-core.combined-db.magda-postgres.postgresql.image.registry=registry.gitlab.com,magda-core.combined-db.magda-postgres.postgresql.image.repository=magda-data/magda/data61/magda-postgres,magda-core.combined-db.magda-postgres.postgresql.image.tag=$CI_COMMIT_REF_SLUG
helm upgrade test2 deploy/helm/local-auth-test-deployment --debug --namespace test2 --install --timeout 1200s --set global.image.tag=$CI_COMMIT_REF_SLUG,magda-core.combined-db.magda-postgres.postgresql.image.tag=$CI_COMMIT_REF_SLUG
# Forward local ports to kind
kubectl port-forward combined-db-postgresql-0 5432 --namespace test2 >/dev/null 2>&1 < /dev/null &
Expand Down Expand Up @@ -784,7 +784,7 @@ inttest:registryAuth:
- kubectl get namespace $CI_COMMIT_REF_SLUG || kubectl create namespace $CI_COMMIT_REF_SLUG

# Create kube secrets
- kubectl create secret docker-registry regcred --namespace $CI_COMMIT_REF_SLUG --docker-server=registry.gitlab.com --docker-username=gitlab-ci-token --docker-password=$CI_JOB_TOKEN --docker-email=alex.gilleran@data61.csiro.au --dry-run=client -o json | kubectl apply --namespace $CI_COMMIT_REF_SLUG -f -
- kubectl create secret docker-registry regcred --namespace $CI_COMMIT_REF_SLUG --docker-server=registry.gitlab.com --docker-username=magdabot --docker-password=$GITLAB_DOCKER_PASSWORD --docker-email=contact@magda.io --dry-run=client -o json | kubectl apply --namespace $CI_COMMIT_REF_SLUG -f -
- kubectl create secret generic oauth-secrets --from-literal=facebook-client-secret=$FACEBOOK_CLIENT_SECRET --from-literal=google-client-secret=$GOOGLE_CLIENT_SECRET --from-literal arcgis-client-secret=$ARCGIS_CLIENT_SECRET --from-literal vanguard-certificate="$VANGUARD_CERT" --namespace $CI_COMMIT_REF_SLUG --dry-run=client -o json | kubectl apply --namespace $CI_COMMIT_REF_SLUG -f -
- kubectl create secret generic smtp-secret --from-literal=username=$SMTP_USERNAME --from-literal=password=$SMTP_PASSWORD --namespace $CI_COMMIT_REF_SLUG --dry-run=client -o json | kubectl apply --namespace $CI_COMMIT_REF_SLUG -f -
- echo "$DB_SERVICE_ACCOUNT_PRIVATE_KEY" > backup-storage-account.json
Expand All @@ -795,13 +795,13 @@ inttest:registryAuth:
- SUPER_DB_PASSWORD=$(kubectl --namespace=default get secret db-main-account-secret --template='{{index .data "postgresql-password"}}' | base64 -d)
- kubectl create secret generic combined-db-password --from-literal=password=$CLIENT_DB_PASSWORD --dry-run=client -o json | kubectl apply --namespace $CI_COMMIT_REF_SLUG -f -
- kubectl create secret generic db-main-account-secret --from-literal=postgresql-password=$SUPER_DB_PASSWORD --dry-run=client -o json | kubectl apply --namespace $CI_COMMIT_REF_SLUG -f -
- helm upgrade $CI_COMMIT_REF_SLUG deploy/helm/local-deployment --install --recreate-pods --namespace $CI_COMMIT_REF_SLUG -f deploy/helm/preview.yml --set global.image.repository=registry.gitlab.com/magda-data/magda/data61,global.image.tag=$CI_COMMIT_REF_SLUG,magda.magda-core.ingress.hostname=$CI_COMMIT_REF_SLUG.dev.magda.io,global.externalUrl=https://$CI_COMMIT_REF_SLUG.dev.magda.io,global.namespace=$CI_COMMIT_REF_SLUG --timeout 3600m --wait
- helm upgrade $CI_COMMIT_REF_SLUG deploy/helm/local-deployment --install --recreate-pods --namespace $CI_COMMIT_REF_SLUG -f deploy/helm/preview.yml --set magda.magda-core.authorization-db.migratorBackoffLimit=10,magda.magda-core.registry-db.migratorBackoffLimit=10,global.image.tag=$CI_COMMIT_REF_SLUG,magda.magda-core.combined-db.magda-postgres.postgresql.image.tag=$CI_COMMIT_REF_SLUG,magda.magda-core.ingress.hostname=$CI_COMMIT_REF_SLUG.dev.magda.io,global.externalUrl=https://$CI_COMMIT_REF_SLUG.dev.magda.io,global.namespace=$CI_COMMIT_REF_SLUG --timeout 3600m --wait
- echo "Successfully deployed to https://${CI_COMMIT_REF_SLUG}.dev.magda.io"

(UI) Run As Preview:
<<: *runAsPreview
script:
- helm upgrade $CI_COMMIT_REF_SLUG deploy/helm/local-deployment --install --recreate-pods --namespace $CI_COMMIT_REF_SLUG -f deploy/helm/preview.yml --set global.openfaas.enabled=false,global.image.repository=registry.gitlab.com/magda-data/magda/data61,global.image.tag=$CI_COMMIT_REF_SLUG,magda.magda-core.ingress.hostname=$CI_COMMIT_REF_SLUG.dev.magda.io,magda.magda-core.ingress.targetService=web,tags.all=false,tags.web-server=true,magda.magda-core.web-server.baseUrl=https://dev.magda.io,magda.magda-core.web-server.useLocalStyleSheet=true --timeout 3600m --wait
- helm upgrade $CI_COMMIT_REF_SLUG deploy/helm/local-deployment --install --recreate-pods --namespace $CI_COMMIT_REF_SLUG -f deploy/helm/preview.yml --set global.openfaas.enabled=false,global.image.tag=$CI_COMMIT_REF_SLUG,magda.magda-core.ingress.hostname=$CI_COMMIT_REF_SLUG.dev.magda.io,magda.magda-core.ingress.targetService=web,tags.all=false,tags.web-server=true,tags.correspondence-api=false,magda.magda-core.web-server.baseUrl=https://dev.magda.io,global.externalUrl=https://$CI_COMMIT_REF_SLUG.dev.magda.io,magda.magda-core.web-server.useLocalStyleSheet=true --timeout 3600m --wait
- echo "Successfully deployed to https://${CI_COMMIT_REF_SLUG}.dev.magda.io"

(UI - Auto) Run As Preview:
Expand All @@ -811,18 +811,18 @@ inttest:registryAuth:
variables:
- $CI_COMMIT_MESSAGE =~ /#deploy-ui-preview/
script:
- helm upgrade $CI_COMMIT_REF_SLUG deploy/helm/local-deployment --install --recreate-pods --namespace $CI_COMMIT_REF_SLUG -f deploy/helm/preview.yml --set global.openfaas.enabled=false,global.image.repository=registry.gitlab.com/magda-data/magda/data61,global.image.tag=$CI_COMMIT_REF_SLUG,magda.magda-core.ingress.hostname=$CI_COMMIT_REF_SLUG.dev.magda.io,magda.magda-core.ingress.targetService=web,tags.all=false,tags.web-server=true,magda.magda-core.web-server.baseUrl=https://dev.magda.io,magda.magda-core.web-server.useLocalStyleSheet=true --timeout 3600m --wait
- helm upgrade $CI_COMMIT_REF_SLUG deploy/helm/local-deployment --install --recreate-pods --namespace $CI_COMMIT_REF_SLUG -f deploy/helm/preview.yml --set global.openfaas.enabled=false,global.image.tag=$CI_COMMIT_REF_SLUG,magda.magda-core.ingress.hostname=$CI_COMMIT_REF_SLUG.dev.magda.io,magda.magda-core.ingress.targetService=web,tags.all=false,tags.web-server=true,tags.correspondence-api=false,magda.magda-core.web-server.baseUrl=https://dev.magda.io,global.externalUrl=https://$CI_COMMIT_REF_SLUG.dev.magda.io,magda.magda-core.web-server.useLocalStyleSheet=true --timeout 3600m --wait
- echo "Successfully deployed to https://${CI_COMMIT_REF_SLUG}.dev.magda.io"

(No Data) Run As Preview:
<<: *runAsPreview
script:
- helm upgrade $CI_COMMIT_REF_SLUG deploy/helm/local-deployment --install --recreate-pods --namespace $CI_COMMIT_REF_SLUG -f deploy/helm/preview.yml --set global.image.repository=registry.gitlab.com/magda-data/magda/data61,global.image.tag=$CI_COMMIT_REF_SLUG,magda.magda-core.ingress.hostname=$CI_COMMIT_REF_SLUG.dev.magda.io,magda.magda-core.combined-db.magda-postgres.backupRestore.recoveryMode.enabled=false,magda.magda-core.elasticsearch.useGcsSnapshots=false,global.externalUrl=https://$CI_COMMIT_REF_SLUG.dev.magda.io,global.namespace=$CI_COMMIT_REF_SLUG --timeout 3600m --wait
- helm upgrade $CI_COMMIT_REF_SLUG deploy/helm/local-deployment --install --recreate-pods --namespace $CI_COMMIT_REF_SLUG -f deploy/helm/preview.yml --set global.image.tag=$CI_COMMIT_REF_SLUG,magda.magda-core.combined-db.magda-postgres.postgresql.image.tag=$CI_COMMIT_REF_SLUG,magda.magda-core.ingress.hostname=$CI_COMMIT_REF_SLUG.dev.magda.io,magda.magda-core.combined-db.magda-postgres.backupRestore.recoveryMode.enabled=false,magda.magda-core.elasticsearch.useGcsSnapshots=false,global.externalUrl=https://$CI_COMMIT_REF_SLUG.dev.magda.io,global.namespace=$CI_COMMIT_REF_SLUG --timeout 3600m --wait
- echo "Successfully deployed to https://${CI_COMMIT_REF_SLUG}.dev.magda.io"
(No Data) Run As Multi-tenant Preview:
<<: *runAsPreview
script:
- helm upgrade $CI_COMMIT_REF_SLUG deploy/helm/local-deployment --install --recreate-pods --namespace $CI_COMMIT_REF_SLUG -f deploy/helm/preview-multi-tenant.yml --set global.image.repository=registry.gitlab.com/magda-data/magda/data61,global.image.tag=$CI_COMMIT_REF_SLUG,magda.magda-core.ingress.hostname=$CI_COMMIT_REF_SLUG.dev.magda.io,magda.magda-core.combined-db.magda-postgres.backupRestore.recoveryMode.enabled=false,magda.magda-core.elasticsearch.useGcsSnapshots=false,global.externalUrl=https://$CI_COMMIT_REF_SLUG.dev.magda.io,global.magdaAdminPortalName=admin-$CI_COMMIT_REF_SLUG.dev.magda.io,global.namespace=$CI_COMMIT_REF_SLUG --timeout 3600 --wait
- helm upgrade $CI_COMMIT_REF_SLUG deploy/helm/local-deployment --install --recreate-pods --namespace $CI_COMMIT_REF_SLUG -f deploy/helm/preview-multi-tenant.yml --set global.image.tag=$CI_COMMIT_REF_SLUG,magda.magda-core.combined-db.magda-postgres.postgresql.image.tag=$CI_COMMIT_REF_SLUG,magda.magda-core.ingress.hostname=$CI_COMMIT_REF_SLUG.dev.magda.io,magda.magda-core.combined-db.magda-postgres.backupRestore.recoveryMode.enabled=false,magda.magda-core.elasticsearch.useGcsSnapshots=false,global.externalUrl=https://$CI_COMMIT_REF_SLUG.dev.magda.io,global.magdaAdminPortalName=admin-$CI_COMMIT_REF_SLUG.dev.magda.io,global.namespace=$CI_COMMIT_REF_SLUG --timeout 3600 --wait
- echo "Successfully deployed to https://${CI_COMMIT_REF_SLUG}.dev.magda.io"


Expand Down Expand Up @@ -866,8 +866,8 @@ Deploy Master To Dev:
script:
- echo "$KUBECTL_CONFIG" > kubectlconfig.yaml
- export KUBECONFIG=kubectlconfig.yaml
- kubectl create secret docker-registry regcred --namespace default --docker-server=registry.gitlab.com --docker-username=gitlab-ci-token --docker-password=$CI_JOB_TOKEN --docker-email=alex.gilleran@data61.csiro.au --dry-run=client -o json | kubectl apply --namespace default -f -
- helm upgrade magda deploy/helm/local-deployment --install --recreate-pods -f deploy/helm/magda-dev.yml --set global.image.repository=registry.gitlab.com/magda-data/magda/data61,global.image.tag=master --timeout 3600m --wait
- kubectl create secret docker-registry regcred --namespace default --docker-server=registry.gitlab.com --docker-username=magdabot --docker-password=contact@magda.io --docker-email=contact@magda.io --dry-run=client -o json | kubectl apply --namespace default -f -
- helm upgrade magda deploy/helm/local-deployment --install --recreate-pods -f deploy/helm/magda-dev.yml --timeout 3600m --wait

pre-release:check-release-version:
stage: pre-release
Expand Down
9 changes: 9 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,15 @@
- remove magda-auth-ckan from default CD deployment
- Related to #3229, implement docker image related templates
- Related to #3229, add `magdaModuleType: "core"` to all core chart annotation
- Related to #3229, internal charts use magda-common to handle docker image related logic
- #3236 Fix VACUUM statement syntax for postgreSQL 13
- #3237 Fix CloudSQL Chart incorrect set replicas when autoscaler is enabled
- #3234 use scheduling.k8s.io/v1 for PriorityClass
- Related to #3229, upgrade `connectors` to use magda-common to handle docker image related logic
- Related to #3229, upgrade `magda-preview-map` to use magda-common to handle docker image related logic
- Related to #3229, upgrade `minions` to use magda-common to handle docker image related logic
- Make migrator jobs backoff limit configurable
- Turn off TerriaJs V7 support in CI dev site deployment

## 0.0.60

Expand Down
2 changes: 1 addition & 1 deletion deploy/helm/internal-charts/admin-api/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
description: A Helm chart for Kubernetes
name: admin-api
version: 1.0.0-alpha.2
version: 1.0.0-alpha.5
kubeVersion: ">= 1.14.0-0"
annotations:
magdaModuleType: "core"
7 changes: 5 additions & 2 deletions deploy/helm/internal-charts/admin-api/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# admin-api

![Version: 1.0.0-alpha.2](https://img.shields.io/badge/Version-1.0.0--alpha.2-informational?style=flat-square)
![Version: 1.0.0-alpha.5](https://img.shields.io/badge/Version-1.0.0--alpha.5-informational?style=flat-square)

A Helm chart for Kubernetes

Expand All @@ -12,7 +12,10 @@ Kubernetes: `>= 1.14.0-0`

| Key | Type | Default | Description |
|-----|------|---------|-------------|
| image | object | `{}` | |
| defaultImage.pullPolicy | string | `"IfNotPresent"` | |
| defaultImage.pullSecrets | bool | `false` | |
| defaultImage.repository | string | `"docker.io/data61"` | |
| image.name | string | `"magda-admin-api"` | |
| namespace | string | `nil` | the k8s namespace contains job object. When empty, will use `.Release.Namespace` |
| rbac.create | bool | `true` | Whether or not to create RBAC role & role binding |
| resources.requests.cpu | string | `"50m"` | |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,15 @@ spec:
labels:
service: admin-api
spec:
{{- if and (.Capabilities.APIVersions.Has "scheduling.k8s.io/v1beta1") .Values.global.enablePriorityClass }}
{{- if and (.Capabilities.APIVersions.Has "scheduling.k8s.io/v1") .Values.global.enablePriorityClass }}
priorityClassName: magda-7
{{- end }}
serviceAccountName: {{ .Values.serviceAccount.name | default "magda-admin-api-service-account" }}
{{- include "magda.imagePullSecrets" . | indent 6 }}
containers:
- name: admin-api
image: {{ template "dockerimage" . }}
imagePullPolicy: {{ .Values.image.pullPolicy | default .Values.global.image.pullPolicy }}
image: {{ include "magda.image" . | quote }}
imagePullPolicy: {{ include "magda.imagePullPolicy" . | quote }}
command: [
"node",
"/usr/src/app/component/dist/index.js",
Expand Down
13 changes: 12 additions & 1 deletion deploy/helm/internal-charts/admin-api/values.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
image: {}
image:
name: "magda-admin-api"
# repository:
# tag:
# pullPolicy:
# pullSecrets:

defaultImage:
repository: docker.io/data61
pullPolicy: IfNotPresent
pullSecrets: false

resources:
requests:
cpu: 50m
Expand Down
3 changes: 1 addition & 2 deletions deploy/helm/internal-charts/apidocs-server/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
apiVersion: v2
description: A Helm chart for Kubernetes
name: apidocs-server
version: 1.0.0-alpha.2
version: 1.0.0-alpha.5
kubeVersion: ">= 1.14.0-0"
annotations:
magdaModuleType: "core"

7 changes: 5 additions & 2 deletions deploy/helm/internal-charts/apidocs-server/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# apidocs-server

![Version: 1.0.0-alpha.2](https://img.shields.io/badge/Version-1.0.0--alpha.2-informational?style=flat-square)
![Version: 1.0.0-alpha.5](https://img.shields.io/badge/Version-1.0.0--alpha.5-informational?style=flat-square)

A Helm chart for Kubernetes

Expand All @@ -12,7 +12,10 @@ Kubernetes: `>= 1.14.0-0`

| Key | Type | Default | Description |
|-----|------|---------|-------------|
| image | object | `{}` | |
| defaultImage.pullPolicy | string | `"IfNotPresent"` | |
| defaultImage.pullSecrets | bool | `false` | |
| defaultImage.repository | string | `"docker.io/data61"` | |
| image.name | string | `"magda-apidocs-server"` | |
| resources.limits.cpu | string | `"20m"` | |
| resources.requests.cpu | string | `"10m"` | |
| resources.requests.memory | string | `"10Mi"` | |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ spec:
labels:
service: apidocs-server
spec:
{{- include "magda.imagePullSecrets" . | indent 6 }}
containers:
- name: apidocs-server
readinessProbe:
Expand All @@ -32,5 +33,5 @@ spec:
{{- end }}
resources:
{{ toYaml .Values.resources | indent 10 }}
image: {{ template "dockerimage" . }}
imagePullPolicy: {{ .Values.image.pullPolicy | default .Values.global.image.pullPolicy }}
image: {{ include "magda.image" . | quote }}
imagePullPolicy: {{ include "magda.imagePullPolicy" . | quote }}
13 changes: 12 additions & 1 deletion deploy/helm/internal-charts/apidocs-server/values.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
image: {}
image:
name: "magda-apidocs-server"
# repository:
# tag:
# pullPolicy:
# pullSecrets:

defaultImage:
repository: docker.io/data61
pullPolicy: IfNotPresent
pullSecrets: false

resources:
requests:
cpu: 10m
Expand Down
2 changes: 1 addition & 1 deletion deploy/helm/internal-charts/authorization-api/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
description: A Helm chart for Kubernetes
name: authorization-api
version: 1.0.0-alpha.2
version: 1.0.0-alpha.5
kubeVersion: ">= 1.14.0-0"
annotations:
magdaModuleType: "core"
7 changes: 5 additions & 2 deletions deploy/helm/internal-charts/authorization-api/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# authorization-api

![Version: 1.0.0-alpha.2](https://img.shields.io/badge/Version-1.0.0--alpha.2-informational?style=flat-square)
![Version: 1.0.0-alpha.5](https://img.shields.io/badge/Version-1.0.0--alpha.5-informational?style=flat-square)

A Helm chart for Kubernetes

Expand All @@ -16,7 +16,10 @@ Kubernetes: `>= 1.14.0-0`
| autoscaler.maxReplicas | int | `3` | |
| autoscaler.minReplicas | int | `1` | |
| autoscaler.targetCPUUtilizationPercentage | int | `80` | |
| image | object | `{}` | |
| defaultImage.pullPolicy | string | `"IfNotPresent"` | |
| defaultImage.pullSecrets | bool | `false` | |
| defaultImage.repository | string | `"docker.io/data61"` | |
| image.name | string | `"magda-authorization-api"` | |
| resources.limits.cpu | string | `"50m"` | |
| resources.requests.cpu | string | `"10m"` | |
| resources.requests.memory | string | `"50Mi"` | |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,14 @@ spec:
labels:
service: authorization-api
spec:
{{- if and (.Capabilities.APIVersions.Has "scheduling.k8s.io/v1beta1") .Values.global.enablePriorityClass }}
{{- if and (.Capabilities.APIVersions.Has "scheduling.k8s.io/v1") .Values.global.enablePriorityClass }}
priorityClassName: magda-8
{{- end }}
{{- include "magda.imagePullSecrets" . | indent 6 }}
containers:
- name: authorization-api
image: {{ template "dockerimage" . }}
imagePullPolicy: {{ .Values.image.pullPolicy | default .Values.global.image.pullPolicy }}
image: {{ include "magda.image" . | quote }}
imagePullPolicy: {{ include "magda.imagePullPolicy" . | quote }}
command: [
"node",
"/usr/src/app/component/dist/index.js",
Expand Down Expand Up @@ -58,4 +59,4 @@ spec:
secretKeyRef:
name: auth-secrets
key: jwt-secret
{{ include "magda.db-client-credential-env" (dict "dbName" "authorization-db" "root" .) | indent 8 }}
{{- include "magda.db-client-credential-env" (dict "dbName" "authorization-db" "root" .) | indent 8 }}
13 changes: 12 additions & 1 deletion deploy/helm/internal-charts/authorization-api/values.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
image: {}
image:
name: "magda-authorization-api"
# repository:
# tag:
# pullPolicy:
# pullSecrets:

defaultImage:
repository: docker.io/data61
pullPolicy: IfNotPresent
pullSecrets: false

autoscaler:
enabled: false
minReplicas: 1
Expand Down
6 changes: 3 additions & 3 deletions deploy/helm/internal-charts/authorization-db/Chart.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dependencies:
- name: magda-postgres
repository: file://../magda-postgres
version: 1.0.0-alpha.2
digest: sha256:1d1e57bd9fb79e69da39b507567e9220a8fcd894c55c34386c8173a83351c3ef
generated: "2021-09-13T16:41:06.987032+10:00"
version: 1.0.0-alpha.5
digest: sha256:329944b0de6d7ac380ef1435cfe4d7e577ed094c70ce3210502bf16d09cd350c
generated: "2021-10-15T09:16:38.039526+11:00"
4 changes: 2 additions & 2 deletions deploy/helm/internal-charts/authorization-db/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
apiVersion: v2
description: A Helm chart for Kubernetes
name: authorization-db
version: 1.0.0-alpha.2
version: 1.0.0-alpha.5
kubeVersion: ">= 1.14.0-0"
annotations:
magdaModuleType: "core"
dependencies:
- name: magda-postgres
version: "1.0.0-alpha.2"
version: "1.0.0-alpha.5"
repository: "file://../magda-postgres"
condition: global.useInK8sDbInstance.authorization-db
Loading

0 comments on commit 0e40284

Please sign in to comment.