This is an automated email from the ASF dual-hosted git repository.

yzheng pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/polaris.git


The following commit(s) were added to refs/heads/main by this push:
     new eefe57263 Remove postgres_latest as image tag (#2045)
eefe57263 is described below

commit eefe57263f09c3b592cd944d634c6ec9ba7a9e34
Author: Yong Zheng <yongzheng0...@gmail.com>
AuthorDate: Thu Jul 31 08:38:59 2025 -0500

    Remove postgres_latest as image tag (#2045)
    
    * Remove postgres_latest as image tag
    
    * Change image tag to latest for getting started examples
    
    * Change image tag to latest from helm
---
 getting-started/assets/cloud_providers/deploy-aws.sh         | 1 -
 getting-started/assets/cloud_providers/deploy-azure.sh       | 1 -
 getting-started/assets/cloud_providers/deploy-gcp.sh         | 1 -
 getting-started/eclipselink/README.md                        | 1 -
 getting-started/eclipselink/docker-compose-bootstrap-db.yml  | 2 +-
 getting-started/eclipselink/docker-compose.yml               | 2 +-
 getting-started/jdbc/README.md                               | 1 -
 getting-started/jdbc/docker-compose-bootstrap-db.yml         | 2 +-
 getting-started/jdbc/docker-compose.yml                      | 2 +-
 helm/polaris/README.md                                       | 2 +-
 helm/polaris/values.yaml                                     | 2 +-
 site/content/in-dev/unreleased/getting-started/quickstart.md | 1 -
 site/content/in-dev/unreleased/helm.md                       | 2 +-
 13 files changed, 7 insertions(+), 13 deletions(-)

diff --git a/getting-started/assets/cloud_providers/deploy-aws.sh 
b/getting-started/assets/cloud_providers/deploy-aws.sh
index cedee8806..70ef64ada 100644
--- a/getting-started/assets/cloud_providers/deploy-aws.sh
+++ b/getting-started/assets/cloud_providers/deploy-aws.sh
@@ -80,7 +80,6 @@ aws s3api create-bucket --bucket $S3_BUCKET_NAME --region 
$CURRENT_REGION --crea
 export STORAGE_LOCATION="s3://$S3_BUCKET_NAME/quickstart_catalog/"
 
 ./gradlew clean :polaris-server:assemble :polaris-admin:assemble \
-       -Dquarkus.container-image.tag=postgres-latest \
        -Dquarkus.container-image.build=true \
        --no-build-cache
 
diff --git a/getting-started/assets/cloud_providers/deploy-azure.sh 
b/getting-started/assets/cloud_providers/deploy-azure.sh
index 9164dcbbc..5efc91d6e 100644
--- a/getting-started/assets/cloud_providers/deploy-azure.sh
+++ b/getting-started/assets/cloud_providers/deploy-azure.sh
@@ -67,7 +67,6 @@ azure.auth-type=DEFAULT
 EOF
 
 ./gradlew clean :polaris-server:assemble :polaris-admin:assemble \
-       -Dquarkus.container-image.tag=postgres-latest \
        -Dquarkus.container-image.build=true \
        --no-build-cache
 
diff --git a/getting-started/assets/cloud_providers/deploy-gcp.sh 
b/getting-started/assets/cloud_providers/deploy-gcp.sh
index 691430dea..51a62e392 100644
--- a/getting-started/assets/cloud_providers/deploy-gcp.sh
+++ b/getting-started/assets/cloud_providers/deploy-gcp.sh
@@ -48,7 +48,6 @@ gcloud storage buckets create "gs://$GCS_BUCKET_NAME" 
--location=$CURRENT_REGION
 export STORAGE_LOCATION="gs://$GCS_BUCKET_NAME/quickstart_catalog/"
 
 ./gradlew clean :polaris-server:assemble :polaris-admin:assemble \
-       -Dquarkus.container-image.tag=postgres-latest \
        -Dquarkus.container-image.build=true \
        --no-build-cache
 
diff --git a/getting-started/eclipselink/README.md 
b/getting-started/eclipselink/README.md
index 0614822d1..02deeeb85 100644
--- a/getting-started/eclipselink/README.md
+++ b/getting-started/eclipselink/README.md
@@ -30,7 +30,6 @@ This example requires `jq` to be installed on your machine.
        :polaris-server:quarkusAppPartsBuild --rerun \
        :polaris-admin:assemble \
        :polaris-admin:quarkusAppPartsBuild --rerun \
-       -Dquarkus.container-image.tag=postgres-latest \
        -Dquarkus.container-image.build=true
     ```
 
diff --git a/getting-started/eclipselink/docker-compose-bootstrap-db.yml 
b/getting-started/eclipselink/docker-compose-bootstrap-db.yml
index 7edc91fad..d829d928b 100644
--- a/getting-started/eclipselink/docker-compose-bootstrap-db.yml
+++ b/getting-started/eclipselink/docker-compose-bootstrap-db.yml
@@ -20,7 +20,7 @@
 services:
   polaris-bootstrap:
     # IMPORTANT: the image MUST contain the Postgres JDBC driver and 
EclipseLink dependencies, see README for instructions
-    image: apache/polaris-admin-tool:postgres-latest
+    image: apache/polaris-admin-tool:latest
     environment:
       polaris.persistence.type: eclipse-link
       polaris.persistence.eclipselink.configuration-file: 
/deployments/config/eclipselink/persistence.xml
diff --git a/getting-started/eclipselink/docker-compose.yml 
b/getting-started/eclipselink/docker-compose.yml
index c95dcae29..15480c43f 100644
--- a/getting-started/eclipselink/docker-compose.yml
+++ b/getting-started/eclipselink/docker-compose.yml
@@ -21,7 +21,7 @@ services:
 
   polaris:
     # IMPORTANT: the image MUST contain the Postgres JDBC driver and 
EclipseLink dependencies, see README for instructions
-    image: apache/polaris:postgres-latest
+    image: apache/polaris:latest
     ports:
       # API port
       - "8181:8181"
diff --git a/getting-started/jdbc/README.md b/getting-started/jdbc/README.md
index 17e14631d..a9866f496 100644
--- a/getting-started/jdbc/README.md
+++ b/getting-started/jdbc/README.md
@@ -30,7 +30,6 @@ This example requires `jq` to be installed on your machine.
        :polaris-server:quarkusAppPartsBuild --rerun \
        :polaris-admin:assemble \
        :polaris-admin:quarkusAppPartsBuild --rerun \
-       -Dquarkus.container-image.tag=postgres-latest \
        -Dquarkus.container-image.build=true
     ```
 
diff --git a/getting-started/jdbc/docker-compose-bootstrap-db.yml 
b/getting-started/jdbc/docker-compose-bootstrap-db.yml
index 9a14ec51c..00eb35943 100644
--- a/getting-started/jdbc/docker-compose-bootstrap-db.yml
+++ b/getting-started/jdbc/docker-compose-bootstrap-db.yml
@@ -19,7 +19,7 @@
 
 services:
   polaris-bootstrap:
-    image: apache/polaris-admin-tool:postgres-latest
+    image: apache/polaris-admin-tool:latest
     environment:
       - POLARIS_PERSISTENCE_TYPE=relational-jdbc
       - QUARKUS_DATASOURCE_JDBC_URL=${QUARKUS_DATASOURCE_JDBC_URL}
diff --git a/getting-started/jdbc/docker-compose.yml 
b/getting-started/jdbc/docker-compose.yml
index c1423fead..dad756f0d 100644
--- a/getting-started/jdbc/docker-compose.yml
+++ b/getting-started/jdbc/docker-compose.yml
@@ -20,7 +20,7 @@
 services:
 
   polaris:
-    image: apache/polaris:postgres-latest
+    image: apache/polaris:latest
     ports:
       # API port
       - "8181:8181"
diff --git a/helm/polaris/README.md b/helm/polaris/README.md
index d0daa190b..1cc84f6de 100644
--- a/helm/polaris/README.md
+++ b/helm/polaris/README.md
@@ -234,7 +234,7 @@ ct install --namespace polaris --charts ./helm/polaris
 | image.configDir | string | `"/deployments/config"` | The path to the 
directory where the application.properties file, and other configuration files, 
if any, should be mounted. Note: if you are using EclipseLink, then this value 
must be at least two folders down to the root folder, e.g. 
`/deployments/config` is OK, whereas `/deployments` is not. |
 | image.pullPolicy | string | `"IfNotPresent"` | The image pull policy. |
 | image.repository | string | `"apache/polaris"` | The image repository to 
pull from. |
-| image.tag | string | `"1.1.0-incubating-SNAPSHOT"` | The image tag. |
+| image.tag | string | `"latest"` | The image tag. |
 | imagePullSecrets | list | `[]` | References to secrets in the same namespace 
to use for pulling any of the images used by this chart. Each entry is a 
LocalObjectReference to an existing secret in the namespace. The secret must 
contain a .dockerconfigjson key with a base64-encoded Docker configuration 
file. See 
https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
 for more information. |
 | ingress.annotations | object | `{}` | Annotations to add to the ingress. |
 | ingress.className | string | `""` | Specifies the ingressClassName; leave 
empty if you don't want to customize it |
diff --git a/helm/polaris/values.yaml b/helm/polaris/values.yaml
index 28ce97de5..8201d6f48 100644
--- a/helm/polaris/values.yaml
+++ b/helm/polaris/values.yaml
@@ -27,7 +27,7 @@ image:
   # -- The image pull policy.
   pullPolicy: IfNotPresent
   # -- The image tag.
-  tag: "1.1.0-incubating-SNAPSHOT"
+  tag: "latest"
   # -- The path to the directory where the application.properties file, and 
other configuration
   # files, if any, should be mounted.
   # Note: if you are using EclipseLink, then this value must be at least two 
folders down to the
diff --git a/site/content/in-dev/unreleased/getting-started/quickstart.md 
b/site/content/in-dev/unreleased/getting-started/quickstart.md
index f6e3edef5..6d92c1635 100644
--- a/site/content/in-dev/unreleased/getting-started/quickstart.md
+++ b/site/content/in-dev/unreleased/getting-started/quickstart.md
@@ -35,7 +35,6 @@ cd ~/polaris
   :polaris-server:quarkusAppPartsBuild --rerun \
   :polaris-admin:assemble \
   :polaris-admin:quarkusAppPartsBuild --rerun \
-  -Dquarkus.container-image.tag=postgres-latest \
   -Dquarkus.container-image.build=true
 ```
 - **For standalone**: Omit the `-Dquarkus.container-image.tag` and 
`-Dquarkus.container-image.build` options if you do not need to build a Docker 
image.
diff --git a/site/content/in-dev/unreleased/helm.md 
b/site/content/in-dev/unreleased/helm.md
index d0daa190b..1cc84f6de 100644
--- a/site/content/in-dev/unreleased/helm.md
+++ b/site/content/in-dev/unreleased/helm.md
@@ -234,7 +234,7 @@ ct install --namespace polaris --charts ./helm/polaris
 | image.configDir | string | `"/deployments/config"` | The path to the 
directory where the application.properties file, and other configuration files, 
if any, should be mounted. Note: if you are using EclipseLink, then this value 
must be at least two folders down to the root folder, e.g. 
`/deployments/config` is OK, whereas `/deployments` is not. |
 | image.pullPolicy | string | `"IfNotPresent"` | The image pull policy. |
 | image.repository | string | `"apache/polaris"` | The image repository to 
pull from. |
-| image.tag | string | `"1.1.0-incubating-SNAPSHOT"` | The image tag. |
+| image.tag | string | `"latest"` | The image tag. |
 | imagePullSecrets | list | `[]` | References to secrets in the same namespace 
to use for pulling any of the images used by this chart. Each entry is a 
LocalObjectReference to an existing secret in the namespace. The secret must 
contain a .dockerconfigjson key with a base64-encoded Docker configuration 
file. See 
https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
 for more information. |
 | ingress.annotations | object | `{}` | Annotations to add to the ingress. |
 | ingress.className | string | `""` | Specifies the ingressClassName; leave 
empty if you don't want to customize it |

Reply via email to