Skip to content

Commit fbc53ac

Browse files
committed
Bumping versions
1 parent e7c47ed commit fbc53ac

File tree

3 files changed

+13
-11
lines changed

3 files changed

+13
-11
lines changed

README.adoc

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -270,13 +270,15 @@ sensitive data such as password, OAuth tokens, etc. This project provides integr
270270
accessible by Spring Boot applications. This feature can be explicitly enabled/disabled using the `spring.cloud.kubernetes.secrets.enabled` property.
271271

272272
The `SecretsPropertySource` when enabled will lookup Kubernetes for `Secrets` from the following sources:
273-
1. reading recursively from secrets mounts
274-
2. named after the application (as defined by `spring.application.name`)
275-
3. matching some labels
273+
274+
. reading recursively from secrets mounts
275+
. named after the application (as defined by `spring.application.name`)
276+
. matching some labels
276277

277278
Please note that by default, consuming Secrets via API (points 2 and 3 above) **is not enabled** for security reasons
278-
and it is recommend that containers share secrets via mounted volumes. Otherwise proper RBAC security configurations must be provided
279-
to make sure that unauthorized access to Secrets occurs.
279+
and it is recommended that containers share secrets via mounted volumes.
280+
If you enable consuming Secrets via API, then it is recommended access to Secrets is limited by an
281+
[authorization policy such as RBAC](https://kubernetes.io/docs/concepts/configuration/secret/#best-practices).
280282

281283
If the secrets are found their data is made available to the application.
282284

@@ -755,4 +757,4 @@ added after the original pull request but before a merge.
755757
other target branch in the main project).
756758
* When writing a commit message please follow http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html[these conventions],
757759
if you are fixing an existing issue please add `Fixes gh-XXXX` at the end of the commit
758-
message (where XXXX is the issue number).
760+
message (where XXXX is the issue number).

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<parent>
2525
<groupId>org.springframework.cloud</groupId>
2626
<artifactId>spring-cloud-build</artifactId>
27-
<version>2.1.2.BUILD-SNAPSHOT</version>
27+
<version>2.1.3.BUILD-SNAPSHOT</version>
2828
<relativePath/>
2929
</parent>
3030

@@ -60,9 +60,9 @@
6060

6161
<properties>
6262
<!-- Dependency Versions -->
63-
<spring-cloud-commons.version>2.1.0.BUILD-SNAPSHOT</spring-cloud-commons.version>
64-
<spring-cloud-netflix.version>2.1.0.BUILD-SNAPSHOT</spring-cloud-netflix.version>
65-
<spring-cloud-config.version>2.1.0.BUILD-SNAPSHOT</spring-cloud-config.version>
63+
<spring-cloud-commons.version>2.1.1.BUILD-SNAPSHOT</spring-cloud-commons.version>
64+
<spring-cloud-netflix.version>2.1.1.BUILD-SNAPSHOT</spring-cloud-netflix.version>
65+
<spring-cloud-config.version>2.1.1.BUILD-SNAPSHOT</spring-cloud-config.version>
6666

6767
<!-- Maven Plugin Versions -->
6868
<maven-compiler-plugin.version>3.5</maven-compiler-plugin.version>

spring-cloud-kubernetes-dependencies/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<artifactId>spring-cloud-dependencies-parent</artifactId>
2424
<groupId>org.springframework.cloud</groupId>
25-
<version>2.1.2.BUILD-SNAPSHOT</version>
25+
<version>2.1.3.BUILD-SNAPSHOT</version>
2626
<relativePath/>
2727
</parent>
2828
<artifactId>spring-cloud-kubernetes-dependencies</artifactId>

0 commit comments

Comments
 (0)