Skip to content

Commit afc839a

Browse files
committed
bump UAA and Spring Boot Admin
1 parent 08df077 commit afc839a

File tree

6 files changed

+16
-10
lines changed

6 files changed

+16
-10
lines changed

spring-boot-admin/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ WORKDIR /scratch
99
RUN apk update && apk add ca-certificates && apk add curl && apk add patch
1010
RUN curl https://start.spring.io/starter.zip \
1111
-d type=gradle-project \
12-
-d bootVersion=3.4.1 \
12+
-d bootVersion=3.4.3 \
1313
-d javaVersion=$JVM \
1414
-d groupId=io.steeltoe.docker \
1515
-d artifactId=springbootadmin \
1616
-d applicationName=SpringBootAdmin \
1717
-d language=java \
1818
-d dependencies=codecentric-spring-boot-admin-server \
19-
-d version=3.4.1 \
19+
-d version=3.4.3 \
2020
--output springbootadmin.zip
2121
RUN mkdir springbootadmin && unzip -d springbootadmin springbootadmin.zip
2222
COPY metadata metadata
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.4.1
1+
3.4.3

uaa-server/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
# UAA Server Build
33
# -----------------------------------------------------------------------------
44

5-
FROM cloudfoundry/uaa:77.10.0
5+
FROM cloudfoundry/uaa:77.20.0
66
COPY uaa.yml /uaa/uaa.yml
77
COPY log4j2.properties /uaa/log4j2.properties
8-
ENV CLOUDFOUNDRY_CONFIG_PATH /uaa
9-
ENV SPRING_PROFILES hsql,default
8+
ENV CLOUDFOUNDRY_CONFIG_PATH=/uaa
9+
ENV SPRING_PROFILES=hsql,default
1010
EXPOSE 8080

uaa-server/README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,13 @@ This directory contains resources for building a [CloudFoundry User Account and
77
To run this image locally:
88

99
```shell
10-
docker run -it -p 8080:8080 --name steeltoe-uaa steeltoe.azurecr.io/uaa-server:77.10
10+
docker run -it -p 8080:8080 --name steeltoe-uaa steeltoe.azurecr.io/uaa-server:77
11+
```
12+
13+
To run this image locally, overwriting the included `uaa.yml` file:
14+
15+
```shell
16+
docker run -it -p 8080:8080 --name steeltoe-uaa -v $pwd/uaa.yml:/uaa/uaa.yml steeltoe.azurecr.io/uaa-server:77
1117
```
1218

1319
## Customizing for your Cloud Foundry environment
@@ -21,6 +27,6 @@ These instructions will help you build and deploy a custom image to use as an id
2127
1. `.\build.ps1 uaa-server`.
2228
1. Push the image to an image repository accessible from your Cloud Foundry environment.
2329
1. Deploy the image with a command similar to this:
24-
* `cf push steeltoe-uaa --docker-image steeltoe.azurecr.io/uaa-server:77.10`
30+
* `cf push steeltoe-uaa --docker-image steeltoe.azurecr.io/uaa-server:77`
2531
1. (Operator task) [Add the new identity provider with OpenID Connect](https://docs.vmware.com/en/Single-Sign-On-for-VMware-Tanzu-Application-Service/1.14/sso/GUID-configure-external-id.html#config-ext-oidc)
2632
* Use the `ssotile` credentials from uaa.yml
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
-t uaa-server:77.10 -t uaa-server:77
1+
-t uaa-server:77.20 -t uaa-server:77

uaa-server/metadata/IMAGE_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
77.10.0
1+
77.20.0

0 commit comments

Comments
 (0)