Skip to content

Commit

Permalink
Update docs to point to 1.0-RC24
Browse files Browse the repository at this point in the history
  • Loading branch information
groldan committed Aug 3, 2022
1 parent 4d0661d commit 5292c36
Show file tree
Hide file tree
Showing 8 changed files with 34 additions and 34 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,19 +24,19 @@ build-image-openj9: build-image-infrastructure-openj9 build-image-geoserver-open

build-image-infrastructure:
./mvnw clean package -f src/apps/infrastructure \
-Ddocker -P-geoserver -Ddockerfile.push.skip=$(SKIP_PUSH) -ntp -Dfmt.skip -DskipTests -T1C
-Ddocker -P-geoserver -Ddockerfile.push.skip=$(SKIP_PUSH) -ntp -Dfmt.skip -DskipTests

build-image-infrastructure-openj9:
./mvnw clean package -f src/apps/infrastructure \
-Dopenj9 -P-geoserver -Ddockerfile.push.skip=$(SKIP_PUSH) -ntp -Dfmt.skip -DskipTests -T1C
-Dopenj9 -P-geoserver -Ddockerfile.push.skip=$(SKIP_PUSH) -ntp -Dfmt.skip -DskipTests

build-image-geoserver:
./mvnw clean package -f src/apps/geoserver \
-Ddocker -P-geoserver -Ddockerfile.push.skip=$(SKIP_PUSH) -ntp -Dfmt.skip -DskipTests -T1C
-Ddocker -P-geoserver -Ddockerfile.push.skip=$(SKIP_PUSH) -ntp -Dfmt.skip -DskipTests

build-image-geoserver-openj9:
./mvnw clean package -f src/apps/geoserver \
-Dopenj9 -P-geoserver -Ddockerfile.push.skip=$(SKIP_PUSH) -ntp -Dfmt.skip -DskipTests -T1C
-Dopenj9 -P-geoserver -Ddockerfile.push.skip=$(SKIP_PUSH) -ntp -Dfmt.skip -DskipTests

build-config-native-image:
./mvnw -pl :gs-cloud-config-service install -am -Dfmt.action=check -ntp -P-geoserver
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ Follow the [developer's guide](docs/develop/index.md) to know more about the pro

## Status

`v1.0-RC23` released against GeoServer `2.21.0`.
`v1.0-RC24` released against GeoServer `2.21.0`.

Read the [changelog](https://github.com/geoserver/geoserver-cloud/releases/tag/v1.0-RC14) for more information.

Expand Down
2 changes: 1 addition & 1 deletion config
Submodule config updated 1 files
+4 −0 geoserver_spring.yml
24 changes: 12 additions & 12 deletions docs/deploy/docker-compose/stable/jdbcconfig/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ services:
# Browse to http://localhost:8761 to check all services are registered.
# Run docker-compose -f docker-compose.yml -f docker-compose-discovery-ha.yml to run extra discovery service instances for HA
discovery:
image: geoservercloud/geoserver-cloud-discovery:1.0-RC23
image: geoservercloud/geoserver-cloud-discovery:1.0-RC24
user: 1000:1000 # set the userid:groupid the container runs as
ports:
- 8761:8761
Expand All @@ -62,7 +62,7 @@ services:
# microservices. Being a Discovery First Bootstrap configuration, it'll
# register itself with the Eureka discovery service and can be scaled
config:
image: geoservercloud/geoserver-cloud-config:1.0-RC23
image: geoservercloud/geoserver-cloud-config:1.0-RC24
user: 1000:1000 # set the userid:groupid the container runs as
depends_on:
- discovery
Expand All @@ -75,8 +75,8 @@ services:
SPRING_PROFILES_ACTIVE: git
# 'git' profile config
CONFIG_GIT_URI: https://github.com/geoserver/geoserver-cloud-config.git
# get the config for this release from the v1.0-RC23 tag
SPRING_CLOUD_CONFIG_SERVER_GIT_DEFAULT_LABEL: v1.0-RC23
# get the config for this release from the v1.0-RC24 tag
SPRING_CLOUD_CONFIG_SERVER_GIT_DEFAULT_LABEL: v1.0-RC24
# where to store the cloned repository, if unset, it'll use /tmp/config-repo-<randomid>
CONFIG_GIT_BASEDIR: /tmp/git_config
# 'native' profile config
Expand All @@ -95,7 +95,7 @@ services:
memory: 512M

admin:
image: geoservercloud/geoserver-cloud-admin-server:1.0-RC23
image: geoservercloud/geoserver-cloud-admin-server:1.0-RC24
user: 1000:1000 # set the userid:groupid the container runs as
depends_on:
- config
Expand All @@ -112,7 +112,7 @@ services:
# Application facade, provides a single entry point routing to all
# microservices (e.g. http://localhost:9090/geoserver/wms, http://localhost:9090/geoserver/wfs, etc)
gateway:
image: geoservercloud/geoserver-cloud-gateway:1.0-RC23
image: geoservercloud/geoserver-cloud-gateway:1.0-RC24
user: 1000:1000 # set the userid:groupid the container runs as
depends_on:
- config
Expand All @@ -130,7 +130,7 @@ services:

# WFS microservice, port dynamically allocated to allow scaling (e.g docker-compose scale wfs=5)
wfs:
image: geoservercloud/geoserver-cloud-wfs:1.0-RC23
image: geoservercloud/geoserver-cloud-wfs:1.0-RC24
user: 1000:1000 # set the userid:groupid the container runs as
depends_on:
- config
Expand All @@ -146,7 +146,7 @@ services:

# WMS microservice, port dynamically allocated to allow scaling (e.g docker-compose scale wms=5)
wms:
image: geoservercloud/geoserver-cloud-wms:1.0-RC23
image: geoservercloud/geoserver-cloud-wms:1.0-RC24
user: 1000:1000 # set the userid:groupid the container runs as
depends_on:
- config
Expand All @@ -162,7 +162,7 @@ services:

# WCS microservice, port dynamically allocated to allow scaling (e.g docker-compose scale wcs=5)
wcs:
image: geoservercloud/geoserver-cloud-wcs:1.0-RC23
image: geoservercloud/geoserver-cloud-wcs:1.0-RC24
user: 1000:1000 # set the userid:groupid the container runs as
depends_on:
- config
Expand All @@ -178,7 +178,7 @@ services:

# REST config microservice, port dynamically allocated to allow scaling (e.g docker-compose scale rest=5)
rest:
image: geoservercloud/geoserver-cloud-rest:1.0-RC23
image: geoservercloud/geoserver-cloud-rest:1.0-RC24
user: 1000:1000 # set the userid:groupid the container runs as
depends_on:
- config
Expand All @@ -196,7 +196,7 @@ services:

# WEB UI microservice
webui:
image: geoservercloud/geoserver-cloud-webui:1.0-RC23
image: geoservercloud/geoserver-cloud-webui:1.0-RC24
user: 1000:1000 # set the userid:groupid the container runs as
depends_on:
- rabbitmq
Expand All @@ -211,7 +211,7 @@ services:
cpus: '2.0'
memory: 1G
gwc:
image: geoservercloud/geoserver-cloud-gwc:1.0-RC23
image: geoservercloud/geoserver-cloud-gwc:1.0-RC24
user: 1000:1000 # set the userid:groupid the container runs as
depends_on:
- config
Expand Down
24 changes: 12 additions & 12 deletions docs/deploy/docker-compose/stable/shared_datadir/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ services:
# Browse to http://localhost:8761 to check all services are registered.
# Run docker-compose -f docker-compose.yml -f docker-compose-discovery-ha.yml to run extra discovery service instances for HA
discovery:
image: geoservercloud/geoserver-cloud-discovery:1.0-RC23
image: geoservercloud/geoserver-cloud-discovery:1.0-RC24
user: 1000:1000 # set the userid:groupid the container runs as
ports:
- 8761:8761
Expand All @@ -53,7 +53,7 @@ services:
# microservices. Being a Discovery First Bootstrap configuration, it'll
# register itself with the Eureka discovery service and can be scaled
config:
image: geoservercloud/geoserver-cloud-config:1.0-RC23
image: geoservercloud/geoserver-cloud-config:1.0-RC24
user: 1000:1000 # set the userid:groupid the container runs as
depends_on:
- discovery
Expand All @@ -65,8 +65,8 @@ services:
SPRING_PROFILES_ACTIVE: git
# 'git' profile config
CONFIG_GIT_URI: https://github.com/geoserver/geoserver-cloud-config.git
# get the config for this release from the v1.0-RC23 tag
SPRING_CLOUD_CONFIG_SERVER_GIT_DEFAULT_LABEL: v1.0-RC23
# get the config for this release from the v1.0-RC24 tag
SPRING_CLOUD_CONFIG_SERVER_GIT_DEFAULT_LABEL: v1.0-RC24
# where to store the cloned repository, if unset, it'll use /tmp/config-repo-<randomid>
CONFIG_GIT_BASEDIR: /tmp/git_config
# 'native' profile config
Expand All @@ -85,7 +85,7 @@ services:
memory: 512M

admin:
image: geoservercloud/geoserver-cloud-admin-server:1.0-RC23
image: geoservercloud/geoserver-cloud-admin-server:1.0-RC24
user: 1000:1000 # set the userid:groupid the container runs as
depends_on:
- config
Expand All @@ -102,7 +102,7 @@ services:
# Application facade, provides a single entry point routing to all
# microservices (e.g. http://localhost:9090/geoserver/wms, http://localhost:9090/geoserver/wfs, etc)
gateway:
image: geoservercloud/geoserver-cloud-gateway:1.0-RC23
image: geoservercloud/geoserver-cloud-gateway:1.0-RC24
user: 1000:1000 # set the userid:groupid the container runs as
depends_on:
- config
Expand All @@ -120,7 +120,7 @@ services:

# WFS microservice, port dynamically allocated to allow scaling (e.g docker-compose scale wfs=5)
wfs:
image: geoservercloud/geoserver-cloud-wfs:1.0-RC23
image: geoservercloud/geoserver-cloud-wfs:1.0-RC24
user: 1000:1000 # set the userid:groupid the container runs as
depends_on:
- config
Expand All @@ -139,7 +139,7 @@ services:

# WMS microservice, port dynamically allocated to allow scaling (e.g docker-compose scale wms=5)
wms:
image: geoservercloud/geoserver-cloud-wms:1.0-RC23
image: geoservercloud/geoserver-cloud-wms:1.0-RC24
user: 1000:1000 # set the userid:groupid the container runs as
depends_on:
- config
Expand All @@ -158,7 +158,7 @@ services:

# WCS microservice, port dynamically allocated to allow scaling (e.g docker-compose scale wcs=5)
wcs:
image: geoservercloud/geoserver-cloud-wcs:1.0-RC23
image: geoservercloud/geoserver-cloud-wcs:1.0-RC24
user: 1000:1000 # set the userid:groupid the container runs as
depends_on:
- config
Expand All @@ -177,7 +177,7 @@ services:

# REST config microservice, port dynamically allocated to allow scaling (e.g docker-compose scale rest=5)
rest:
image: geoservercloud/geoserver-cloud-rest:1.0-RC23
image: geoservercloud/geoserver-cloud-rest:1.0-RC24
user: 1000:1000 # set the userid:groupid the container runs as
depends_on:
- config
Expand All @@ -198,7 +198,7 @@ services:

# WEB UI microservice
webui:
image: geoservercloud/geoserver-cloud-webui:1.0-RC23
image: geoservercloud/geoserver-cloud-webui:1.0-RC24
user: 1000:1000 # set the userid:groupid the container runs as
depends_on:
- config
Expand All @@ -217,7 +217,7 @@ services:
cpus: '2.0'
memory: 1G
gwc:
image: geoservercloud/geoserver-cloud-gwc:1.0-RC23
image: geoservercloud/geoserver-cloud-gwc:1.0-RC24
user: 1000:1000 # set the userid:groupid the container runs as
depends_on:
- config
Expand Down
2 changes: 1 addition & 1 deletion docs/deploy/podman/traditional/manual/env
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
GSCLOUD_VERSION=1.0-RC23
GSCLOUD_VERSION=1.0-RC24

4 changes: 2 additions & 2 deletions docs/deploy/podman/traditional/manual/podman.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ In order to speed up the "starting" part of the documentation we are going to do

```bash
podman pull docker.io/library/rabbitmq:3.9-management
export GSCLOUD_VERSION=1.0-RC23
export GSCLOUD_VERSION=1.0-RC24

for service in discovery config gateway admin-server rest webui wms wfs wcs
do
Expand Down Expand Up @@ -71,7 +71,7 @@ podman run -d --name=config --hostname=config \
--network gs-cloud-network \
-e SPRING_PROFILES_ACTIVE=git \
-e CONFIG_GIT_URI=https://github.com/geoserver/geoserver-cloud-config.git \
-e SPRING_CLOUD_CONFIG_SERVER_GIT_DEFAULT_LABEL=v1.0-RC23 \
-e SPRING_CLOUD_CONFIG_SERVER_GIT_DEFAULT_LABEL=v1.0-RC24 \
-e CONFIG_GIT_BASEDIR=/opt/app/git_config \
geoservercloud/geoserver-cloud-config:$GSCLOUD_VERSION
```
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ The following diagram depicts the System's general architecture:
# Project Status

Version `1.0-RC23` has been released against a slightly customized GeoServer `2.21.0`
Version `1.0-RC24` has been released against a slightly customized GeoServer `2.21.0`
with some important fixes to allow starting up several GeoServer instances from an empty
directory or database. We will make sure to contribute those fixes upstream before the final
release.
Expand Down

0 comments on commit 5292c36

Please sign in to comment.