mirror of
https://github.com/bitnami/charts.git
synced 2026-03-05 23:07:04 +08:00
[bitnami/supabase] Release 3.0.2 (#25070)
* [bitnami/supabase] Release 3.0.2 updating components versions Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com> * [bitnami/supabase] Setting API_EXTERNAL_URL parameter for gotrue Signed-off-by: Jota Martos <jotamartos@vmware.com> --------- Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com> Signed-off-by: Jota Martos <jotamartos@vmware.com> Co-authored-by: Jota Martos <jotamartos@vmware.com>
This commit is contained in:
@@ -39,10 +39,9 @@ it('can create a user and generate a token to it (auth)', () => {
|
||||
headers: { apikey: Cypress.env('serviceKey') },
|
||||
// This one works with URL parameters, not with a body
|
||||
url: '/auth/v1/token',
|
||||
body: userPayload,
|
||||
qs: {
|
||||
grant_type: 'password',
|
||||
username: userPayload.email,
|
||||
password: userPayload.password,
|
||||
},
|
||||
}).then((response) => {
|
||||
expect(response.status).to.eq(200);
|
||||
|
||||
@@ -6,25 +6,25 @@ annotations:
|
||||
licenses: Apache-2.0
|
||||
images: |
|
||||
- name: gotrue
|
||||
image: docker.io/bitnami/gotrue:1.0.1-debian-12-r22
|
||||
image: docker.io/bitnami/gotrue:2.147.1-debian-12-r0
|
||||
- name: jwt-cli
|
||||
image: docker.io/bitnami/jwt-cli:6.0.0-debian-12-r17
|
||||
image: docker.io/bitnami/jwt-cli:6.0.0-debian-12-r19
|
||||
- name: kubectl
|
||||
image: docker.io/bitnami/kubectl:1.29.3-debian-12-r0
|
||||
image: docker.io/bitnami/kubectl:1.29.3-debian-12-r3
|
||||
- name: os-shell
|
||||
image: docker.io/bitnami/os-shell:12-debian-12-r16
|
||||
image: docker.io/bitnami/os-shell:12-debian-12-r18
|
||||
- name: postgrest
|
||||
image: docker.io/bitnami/postgrest:11.2.2-debian-12-r12
|
||||
image: docker.io/bitnami/postgrest:11.2.2-debian-12-r14
|
||||
- name: supabase-postgres
|
||||
image: docker.io/bitnami/supabase-postgres:15.1.1-debian-12-r15
|
||||
image: docker.io/bitnami/supabase-postgres:15.1.1-debian-12-r22
|
||||
- name: supabase-postgres-meta
|
||||
image: docker.io/bitnami/supabase-postgres-meta:0.79.6-debian-12-r0
|
||||
image: docker.io/bitnami/supabase-postgres-meta:0.80.0-debian-12-r1
|
||||
- name: supabase-realtime
|
||||
image: docker.io/bitnami/supabase-realtime:2.26.6-debian-12-r0
|
||||
image: docker.io/bitnami/supabase-realtime:2.28.14-debian-12-r0
|
||||
- name: supabase-storage
|
||||
image: docker.io/bitnami/supabase-storage:0.48.2-debian-12-r0
|
||||
image: docker.io/bitnami/supabase-storage:0.48.4-debian-12-r0
|
||||
- name: supabase-studio
|
||||
image: docker.io/bitnami/supabase-studio:0.23.11-debian-12-r9
|
||||
image: docker.io/bitnami/supabase-studio:0.23.11-debian-12-r11
|
||||
apiVersion: v2
|
||||
appVersion: 0.23.11
|
||||
dependencies:
|
||||
@@ -53,4 +53,4 @@ maintainers:
|
||||
name: supabase
|
||||
sources:
|
||||
- https://github.com/bitnami/charts/tree/main/bitnami/supabase
|
||||
version: 3.0.1
|
||||
version: 4.0.0
|
||||
|
||||
@@ -1074,6 +1074,10 @@ Find more information about how to deal with common errors related to Bitnami's
|
||||
|
||||
## Upgrading
|
||||
|
||||
### To 4.0.0
|
||||
|
||||
This major updates the Auth container to use the [supabase/auth package](https://github.com/supabase/auth). You can find more information about the changes [here](https://github.com/bitnami/charts/pull/25070).
|
||||
|
||||
### To 3.0.0
|
||||
|
||||
This major bump changes the following security defaults:
|
||||
@@ -1107,4 +1111,4 @@ Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
limitations under the License.
|
||||
|
||||
@@ -112,7 +112,7 @@ jwt:
|
||||
image:
|
||||
registry: docker.io
|
||||
repository: bitnami/jwt-cli
|
||||
tag: 6.0.0-debian-12-r17
|
||||
tag: 6.0.0-debian-12-r19
|
||||
digest: ""
|
||||
## Specify a imagePullPolicy
|
||||
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
|
||||
@@ -139,7 +139,7 @@ jwt:
|
||||
##
|
||||
registry: docker.io
|
||||
repository: bitnami/kubectl
|
||||
tag: 1.29.3-debian-12-r0
|
||||
tag: 1.29.3-debian-12-r3
|
||||
digest: ""
|
||||
## Specify a imagePullPolicy
|
||||
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
|
||||
@@ -401,10 +401,12 @@ auth:
|
||||
defaultConfig: |
|
||||
GOTRUE_API_HOST: "0.0.0.0"
|
||||
GOTRUE_API_PORT: {{ .Values.auth.containerPorts.http | quote }}
|
||||
API_EXTERNAL_URL: "http:/{{ include "supabase.auth.fullname" . }}:{{ .Values.auth.service.ports.http }}"
|
||||
GOTRUE_SITE_URL: {{ include "supabase.studio.publicURL" . | quote }}
|
||||
GOTRUE_URI_ALLOW_LIST: "*"
|
||||
GOTRUE_DISABLE_SIGNUP: "false"
|
||||
GOTRUE_DB_DRIVER: "postgres"
|
||||
GOTRUE_DB_MIGRATIONS_PATH: "/opt/bitnami/gotrue/"
|
||||
GOTRUE_JWT_DEFAULT_GROUP_NAME: "authenticated"
|
||||
GOTRUE_JWT_ADMIN_ROLES: "service_role"
|
||||
GOTRUE_JWT_AUD: "authenticated"
|
||||
@@ -442,7 +444,7 @@ auth:
|
||||
image:
|
||||
registry: docker.io
|
||||
repository: bitnami/gotrue
|
||||
tag: 1.0.1-debian-12-r22
|
||||
tag: 2.147.1-debian-12-r0
|
||||
digest: ""
|
||||
## Specify a imagePullPolicy
|
||||
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
|
||||
@@ -844,7 +846,7 @@ meta:
|
||||
image:
|
||||
registry: docker.io
|
||||
repository: bitnami/supabase-postgres-meta
|
||||
tag: 0.79.6-debian-12-r0
|
||||
tag: 0.80.0-debian-12-r1
|
||||
digest: ""
|
||||
## Specify a imagePullPolicy
|
||||
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
|
||||
@@ -1262,7 +1264,7 @@ realtime:
|
||||
image:
|
||||
registry: docker.io
|
||||
repository: bitnami/supabase-realtime
|
||||
tag: 2.26.6-debian-12-r0
|
||||
tag: 2.28.14-debian-12-r0
|
||||
digest: ""
|
||||
## Specify a imagePullPolicy
|
||||
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
|
||||
@@ -1662,7 +1664,7 @@ rest:
|
||||
image:
|
||||
registry: docker.io
|
||||
repository: bitnami/postgrest
|
||||
tag: 11.2.2-debian-12-r12
|
||||
tag: 11.2.2-debian-12-r14
|
||||
digest: ""
|
||||
## Specify a imagePullPolicy
|
||||
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
|
||||
@@ -2068,7 +2070,7 @@ storage:
|
||||
image:
|
||||
registry: docker.io
|
||||
repository: bitnami/supabase-storage
|
||||
tag: 0.48.2-debian-12-r0
|
||||
tag: 0.48.4-debian-12-r0
|
||||
digest: ""
|
||||
## Specify a imagePullPolicy
|
||||
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
|
||||
@@ -2519,7 +2521,7 @@ studio:
|
||||
image:
|
||||
registry: docker.io
|
||||
repository: bitnami/supabase-studio
|
||||
tag: 0.23.11-debian-12-r9
|
||||
tag: 0.23.11-debian-12-r11
|
||||
digest: ""
|
||||
## Specify a imagePullPolicy
|
||||
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
|
||||
@@ -3003,7 +3005,7 @@ volumePermissions:
|
||||
image:
|
||||
registry: docker.io
|
||||
repository: bitnami/os-shell
|
||||
tag: 12-debian-12-r16
|
||||
tag: 12-debian-12-r18
|
||||
pullPolicy: IfNotPresent
|
||||
## Optionally specify an array of imagePullSecrets.
|
||||
## Secrets must be manually created in the namespace.
|
||||
@@ -3054,7 +3056,7 @@ volumePermissions:
|
||||
psqlImage:
|
||||
registry: docker.io
|
||||
repository: bitnami/supabase-postgres
|
||||
tag: 15.1.1-debian-12-r15
|
||||
tag: 15.1.1-debian-12-r22
|
||||
digest: ""
|
||||
## Specify a imagePullPolicy
|
||||
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
|
||||
@@ -3229,7 +3231,7 @@ postgresql:
|
||||
image:
|
||||
registry: docker.io
|
||||
repository: bitnami/supabase-postgres
|
||||
tag: 15.1.1-debian-12-r15
|
||||
tag: 15.1.1-debian-12-r22
|
||||
digest: ""
|
||||
## Specify a imagePullPolicy
|
||||
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
|
||||
|
||||
Reference in New Issue
Block a user