Skip to content

Commit d2504b6

Browse files
committed
Merge branch 'main' into move-to-a-common-configuration-for-health
2 parents 092dc3a + c416eea commit d2504b6

File tree

15 files changed

+32
-50
lines changed

15 files changed

+32
-50
lines changed

.github/workflows/composites/restore-docker-images/action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ runs:
2929
uses: actions/cache/save@v4
3030
if: steps.images-cache.outputs.cache-hit != 'true'
3131
with:
32-
path: |
33-
/tmp/docker/images
32+
path: /tmp/docker/images
33+
key: docker-images-github-cache-${{ hashFiles('**/current-images.txt') }}
3434

3535
- name: print images
3636
shell: bash

.github/workflows/maven.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,7 @@ jobs:
4848
owner: context.repo.owner,
4949
repo: context.repo.repo,
5050
})
51-
for (const cache of caches.data.actions_caches) {
52-
console.log(cache)
53-
}
51+
console.log(caches.data)
5452
5553
- name: maven build with dry-run for tests
5654
uses: ./.github/workflows/composites/maven-build-with-dry-run-for-tests

docs/modules/ROOT/pages/spring-cloud-kubernetes-configserver.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
The Spring Cloud Kubernetes Config Server, is based on https://spring.io/projects/spring-cloud-config[Spring Cloud Config Server] and adds an https://docs.spring.io/spring-cloud-config/docs/current/reference/html/#_environment_repository[environment repository] for Kubernetes
55
https://kubernetes.io/docs/concepts/configuration/configmap/[Config Maps] and https://kubernetes.io/docs/concepts/configuration/secret/[Secrets].
66

7-
This is component is completely optional. However, it allows you to continue to leverage configuration
7+
This component is completely optional. However, it allows you to continue to leverage configuration
88
you may have stored in existing environment repositories (Git, SVN, Vault, etc) with applications that you are running on Kubernetes.
99

1010
A default image is located on https://hub.docker.com/r/springcloud/spring-cloud-kubernetes-configserver[Docker Hub] which will allow you to easily get a Config Server deployed on Kubernetes without building

docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
"@antora/collector-extension": "1.0.0-alpha.3",
66
"@asciidoctor/tabs": "1.0.0-beta.6",
77
"@springio/antora-extensions": "1.11.1",
8-
"@springio/asciidoctor-extensions": "1.0.0-alpha.13"
8+
"@springio/asciidoctor-extensions": "1.0.0-alpha.14"
99
}
1010
}

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@
311311
<plugin>
312312
<groupId>org.apache.maven.plugins</groupId>
313313
<artifactId>maven-enforcer-plugin</artifactId>
314-
<version>1.3.1</version>
314+
<version>1.4.1</version>
315315
<executions>
316316
<execution>
317317
<id>enforce-no-snapshots</id>

spring-cloud-kubernetes-controllers/spring-cloud-kubernetes-configserver/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
<properties>
1515
<docker.registry.organization>springcloud</docker.registry.organization>
16-
<plexus-archiver.version>4.8.0</plexus-archiver.version>
16+
<plexus-archiver.version>4.10.0</plexus-archiver.version>
1717
</properties>
1818

1919
<dependencies>
@@ -67,7 +67,7 @@
6767
<plugin>
6868
<groupId>com.spotify</groupId>
6969
<artifactId>dockerfile-maven-plugin</artifactId>
70-
<version>1.4.12</version>
70+
<version>1.4.13</version>
7171
<configuration>
7272
<repository>${docker.registry.organization}/${artifactId}</repository>
7373
<tag>${project.version}</tag>

spring-cloud-kubernetes-controllers/spring-cloud-kubernetes-configuration-watcher/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
<properties>
1515
<docker.registry.organization>springcloud</docker.registry.organization>
16-
<plexus-archiver.version>4.8.0</plexus-archiver.version>
16+
<plexus-archiver.version>4.10.0</plexus-archiver.version>
1717
</properties>
1818

1919
<dependencies>
@@ -86,7 +86,7 @@
8686
<plugin>
8787
<groupId>com.spotify</groupId>
8888
<artifactId>dockerfile-maven-plugin</artifactId>
89-
<version>1.4.12</version>
89+
<version>1.4.13</version>
9090
<configuration>
9191
<repository>${docker.registry.organization}/${artifactId}</repository>
9292
<tag>${project.version}</tag>

spring-cloud-kubernetes-controllers/spring-cloud-kubernetes-discoveryserver/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
<properties>
1515
<docker.registry.organization>springcloud</docker.registry.organization>
16-
<plexus-archiver.version>4.8.0</plexus-archiver.version>
16+
<plexus-archiver.version>4.10.0</plexus-archiver.version>
1717
</properties>
1818

1919
<dependencies>
@@ -59,7 +59,7 @@
5959
<plugin>
6060
<groupId>com.spotify</groupId>
6161
<artifactId>dockerfile-maven-plugin</artifactId>
62-
<version>1.4.12</version>
62+
<version>1.4.13</version>
6363
<configuration>
6464
<repository>${docker.registry.organization}/${artifactId}</repository>
6565
<tag>${project.version}</tag>

spring-cloud-kubernetes-dependencies/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<name>Spring Cloud Kubernetes :: Dependencies</name>
3333
<description>Spring Cloud Kubernetes Dependencies</description>
3434
<properties>
35-
<kubernetes-fabric8-client.version>6.9.2</kubernetes-fabric8-client.version>
35+
<kubernetes-fabric8-client.version>6.13.4</kubernetes-fabric8-client.version>
3636
<kubernetes-native-client.version>19.0.1</kubernetes-native-client.version>
3737
<wiremock.version>3.4.2</wiremock.version>
3838
</properties>

spring-cloud-kubernetes-examples/kubernetes-leader-election-example/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
</plugin>
8080
<plugin>
8181
<artifactId>maven-failsafe-plugin</artifactId>
82-
<version>3.1.2</version>
82+
<version>3.5.0</version>
8383
</plugin>
8484
</plugins>
8585
</build>

0 commit comments

Comments
 (0)