Skip to content

Commit 42bb80e

Browse files
authored
Update Config Watcher Configuration (#1660)
1 parent be3ed08 commit 42bb80e

File tree

6 files changed

+237
-105
lines changed

6 files changed

+237
-105
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
/*
2+
* Copyright 2013-2024 the original author or authors.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* https://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
17+
package org.springframework.cloud.kubernetes.configuration.watcher;
18+
19+
import io.kubernetes.client.openapi.apis.CoreV1Api;
20+
21+
import org.springframework.boot.autoconfigure.AutoConfigureAfter;
22+
import org.springframework.boot.autoconfigure.condition.ConditionalOnBean;
23+
import org.springframework.boot.autoconfigure.condition.ConditionalOnCloudPlatform;
24+
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
25+
import org.springframework.boot.cloud.CloudPlatform;
26+
import org.springframework.cloud.function.context.config.ContextFunctionCatalogAutoConfiguration;
27+
import org.springframework.cloud.kubernetes.client.config.KubernetesClientConfigMapPropertySourceLocator;
28+
import org.springframework.cloud.kubernetes.client.config.KubernetesClientSecretsPropertySourceLocator;
29+
import org.springframework.cloud.kubernetes.commons.KubernetesNamespaceProvider;
30+
import org.springframework.cloud.kubernetes.commons.config.reload.ConfigReloadProperties;
31+
import org.springframework.cloud.kubernetes.commons.config.reload.ConfigurationUpdateStrategy;
32+
import org.springframework.context.annotation.Bean;
33+
import org.springframework.context.annotation.Configuration;
34+
import org.springframework.context.annotation.Import;
35+
import org.springframework.context.annotation.Profile;
36+
import org.springframework.core.env.AbstractEnvironment;
37+
import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor;
38+
39+
import static org.springframework.cloud.kubernetes.configuration.watcher.ConfigurationWatcherConfigurationProperties.KAFKA;
40+
41+
/**
42+
* @author wind57
43+
*/
44+
@Configuration(proxyBeanMethods = false)
45+
@ConditionalOnCloudPlatform(CloudPlatform.KUBERNETES)
46+
@Profile(KAFKA)
47+
@Import(ContextFunctionCatalogAutoConfiguration.class)
48+
@AutoConfigureAfter(RefreshTriggerAutoConfiguration.class)
49+
class BusKafkaAutoConfiguration {
50+
51+
@Bean
52+
@ConditionalOnMissingBean(ConfigMapWatcherChangeDetector.class)
53+
@ConditionalOnBean(KubernetesClientConfigMapPropertySourceLocator.class)
54+
ConfigMapWatcherChangeDetector busConfigMapChangeWatcher(AbstractEnvironment environment, CoreV1Api coreV1Api,
55+
KubernetesClientConfigMapPropertySourceLocator configMapPropertySourceLocator,
56+
ConfigReloadProperties properties, KubernetesNamespaceProvider namespaceProvider,
57+
ConfigurationUpdateStrategy strategy,
58+
ConfigurationWatcherConfigurationProperties k8SConfigurationProperties,
59+
ThreadPoolTaskExecutor threadFactory, BusRefreshTrigger busRefreshTrigger) {
60+
return new BusEventBasedConfigMapWatcherChangeDetector(coreV1Api, environment, properties, strategy,
61+
configMapPropertySourceLocator, namespaceProvider, k8SConfigurationProperties, threadFactory,
62+
busRefreshTrigger);
63+
}
64+
65+
@Bean
66+
@ConditionalOnMissingBean(SecretsWatcherChangeDetector.class)
67+
@ConditionalOnBean(KubernetesClientSecretsPropertySourceLocator.class)
68+
SecretsWatcherChangeDetector busSecretsChangeWatcher(AbstractEnvironment environment, CoreV1Api coreV1Api,
69+
KubernetesClientSecretsPropertySourceLocator secretsPropertySourceLocator,
70+
ConfigReloadProperties properties, ConfigurationUpdateStrategy strategy,
71+
ConfigurationWatcherConfigurationProperties k8SConfigurationProperties,
72+
ThreadPoolTaskExecutor threadFactory, KubernetesNamespaceProvider namespaceProvider,
73+
BusRefreshTrigger busRefreshTrigger) {
74+
return new BusEventBasedSecretsWatcherChangeDetector(coreV1Api, environment, properties, strategy,
75+
secretsPropertySourceLocator, namespaceProvider, k8SConfigurationProperties, threadFactory,
76+
busRefreshTrigger);
77+
}
78+
79+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
/*
2+
* Copyright 2013-2024 the original author or authors.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* https://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
17+
package org.springframework.cloud.kubernetes.configuration.watcher;
18+
19+
import io.kubernetes.client.openapi.apis.CoreV1Api;
20+
21+
import org.springframework.boot.actuate.autoconfigure.amqp.RabbitHealthContributorAutoConfiguration;
22+
import org.springframework.boot.autoconfigure.AutoConfigureAfter;
23+
import org.springframework.boot.autoconfigure.condition.ConditionalOnBean;
24+
import org.springframework.boot.autoconfigure.condition.ConditionalOnCloudPlatform;
25+
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
26+
import org.springframework.boot.cloud.CloudPlatform;
27+
import org.springframework.cloud.function.context.config.ContextFunctionCatalogAutoConfiguration;
28+
import org.springframework.cloud.kubernetes.client.config.KubernetesClientConfigMapPropertySourceLocator;
29+
import org.springframework.cloud.kubernetes.client.config.KubernetesClientSecretsPropertySourceLocator;
30+
import org.springframework.cloud.kubernetes.commons.KubernetesNamespaceProvider;
31+
import org.springframework.cloud.kubernetes.commons.config.reload.ConfigReloadProperties;
32+
import org.springframework.cloud.kubernetes.commons.config.reload.ConfigurationUpdateStrategy;
33+
import org.springframework.context.annotation.Bean;
34+
import org.springframework.context.annotation.Configuration;
35+
import org.springframework.context.annotation.Import;
36+
import org.springframework.context.annotation.Profile;
37+
import org.springframework.core.env.AbstractEnvironment;
38+
import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor;
39+
40+
import static org.springframework.cloud.kubernetes.configuration.watcher.ConfigurationWatcherConfigurationProperties.AMQP;
41+
42+
/**
43+
* @author wind57
44+
*/
45+
@Configuration(proxyBeanMethods = false)
46+
@ConditionalOnCloudPlatform(CloudPlatform.KUBERNETES)
47+
@Profile(AMQP)
48+
@Import({ ContextFunctionCatalogAutoConfiguration.class, RabbitHealthContributorAutoConfiguration.class })
49+
@AutoConfigureAfter(RefreshTriggerAutoConfiguration.class)
50+
class BusRabbitAutoConfiguration {
51+
52+
@Bean
53+
@ConditionalOnMissingBean(ConfigMapWatcherChangeDetector.class)
54+
@ConditionalOnBean(KubernetesClientConfigMapPropertySourceLocator.class)
55+
ConfigMapWatcherChangeDetector busConfigMapChangeWatcher(AbstractEnvironment environment, CoreV1Api coreV1Api,
56+
KubernetesClientConfigMapPropertySourceLocator configMapPropertySourceLocator,
57+
KubernetesNamespaceProvider kubernetesNamespaceProvider, ConfigReloadProperties properties,
58+
ConfigurationUpdateStrategy strategy,
59+
ConfigurationWatcherConfigurationProperties k8SConfigurationProperties,
60+
ThreadPoolTaskExecutor threadFactory, BusRefreshTrigger busRefreshTrigger) {
61+
return new BusEventBasedConfigMapWatcherChangeDetector(coreV1Api, environment, properties, strategy,
62+
configMapPropertySourceLocator, kubernetesNamespaceProvider, k8SConfigurationProperties, threadFactory,
63+
busRefreshTrigger);
64+
}
65+
66+
@Bean
67+
@ConditionalOnMissingBean(SecretsWatcherChangeDetector.class)
68+
@ConditionalOnBean(KubernetesClientSecretsPropertySourceLocator.class)
69+
SecretsWatcherChangeDetector busSecretsChangeWatcher(AbstractEnvironment environment, CoreV1Api coreV1Api,
70+
KubernetesClientSecretsPropertySourceLocator secretsPropertySourceLocator,
71+
ConfigReloadProperties properties, KubernetesNamespaceProvider kubernetesNamespaceProvider,
72+
ConfigurationUpdateStrategy strategy,
73+
ConfigurationWatcherConfigurationProperties k8SConfigurationProperties,
74+
ThreadPoolTaskExecutor threadFactory, BusRefreshTrigger busRefreshTrigger) {
75+
return new BusEventBasedSecretsWatcherChangeDetector(coreV1Api, environment, properties, strategy,
76+
secretsPropertySourceLocator, kubernetesNamespaceProvider, k8SConfigurationProperties, threadFactory,
77+
busRefreshTrigger);
78+
}
79+
80+
}
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2020 the original author or authors.
2+
* Copyright 2013-2024 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -18,24 +18,21 @@
1818

1919
import io.kubernetes.client.openapi.apis.CoreV1Api;
2020

21-
import org.springframework.boot.actuate.autoconfigure.amqp.RabbitHealthContributorAutoConfiguration;
22-
import org.springframework.boot.autoconfigure.AutoConfiguration;
21+
import org.springframework.boot.autoconfigure.AutoConfigureAfter;
22+
import org.springframework.boot.autoconfigure.AutoConfigureBefore;
2323
import org.springframework.boot.autoconfigure.condition.ConditionalOnBean;
24+
import org.springframework.boot.autoconfigure.condition.ConditionalOnCloudPlatform;
2425
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
26+
import org.springframework.boot.cloud.CloudPlatform;
2527
import org.springframework.boot.context.properties.EnableConfigurationProperties;
26-
import org.springframework.cloud.bus.BusProperties;
27-
import org.springframework.cloud.function.context.config.ContextFunctionCatalogAutoConfiguration;
28+
import org.springframework.cloud.bus.BusStreamAutoConfiguration;
2829
import org.springframework.cloud.kubernetes.client.config.KubernetesClientConfigMapPropertySourceLocator;
2930
import org.springframework.cloud.kubernetes.client.config.KubernetesClientSecretsPropertySourceLocator;
30-
import org.springframework.cloud.kubernetes.client.discovery.reactive.KubernetesInformerReactiveDiscoveryClient;
3131
import org.springframework.cloud.kubernetes.commons.KubernetesNamespaceProvider;
3232
import org.springframework.cloud.kubernetes.commons.config.reload.ConfigReloadProperties;
3333
import org.springframework.cloud.kubernetes.commons.config.reload.ConfigurationUpdateStrategy;
34-
import org.springframework.context.ApplicationEventPublisher;
3534
import org.springframework.context.annotation.Bean;
3635
import org.springframework.context.annotation.Configuration;
37-
import org.springframework.context.annotation.Import;
38-
import org.springframework.context.annotation.Profile;
3936
import org.springframework.core.env.AbstractEnvironment;
4037
import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor;
4138
import org.springframework.web.reactive.function.client.WebClient;
@@ -45,14 +42,13 @@
4542
* @author Kris Iyer
4643
*/
4744
@Configuration(proxyBeanMethods = false)
45+
@ConditionalOnCloudPlatform(CloudPlatform.KUBERNETES)
4846
@EnableConfigurationProperties({ ConfigurationWatcherConfigurationProperties.class })
49-
@Import({ ConfigurationWatcherAutoConfiguration.RefreshTriggerConfiguration.class })
47+
@AutoConfigureAfter({ RefreshTriggerAutoConfiguration.class, BusRabbitAutoConfiguration.class,
48+
BusKafkaAutoConfiguration.class })
49+
@AutoConfigureBefore(BusStreamAutoConfiguration.class)
5050
public class ConfigurationWatcherAutoConfiguration {
5151

52-
private static final String AMQP = "bus-amqp";
53-
54-
private static final String KAFKA = "bus-kafka";
55-
5652
@Bean
5753
@ConditionalOnMissingBean
5854
public WebClient webClient(WebClient.Builder webClientBuilder) {
@@ -87,95 +83,4 @@ public SecretsWatcherChangeDetector httpBasedSecretsWatchChangeDetector(Abstract
8783
httpRefreshTrigger);
8884
}
8985

90-
@Configuration
91-
@Profile(AMQP)
92-
@Import({ ContextFunctionCatalogAutoConfiguration.class, RabbitHealthContributorAutoConfiguration.class,
93-
RefreshTriggerConfiguration.class })
94-
static class BusRabbitConfiguration {
95-
96-
@Bean
97-
@ConditionalOnMissingBean(ConfigMapWatcherChangeDetector.class)
98-
@ConditionalOnBean(KubernetesClientConfigMapPropertySourceLocator.class)
99-
public ConfigMapWatcherChangeDetector busConfigMapChangeWatcher(AbstractEnvironment environment,
100-
CoreV1Api coreV1Api, KubernetesClientConfigMapPropertySourceLocator configMapPropertySourceLocator,
101-
KubernetesNamespaceProvider kubernetesNamespaceProvider, ConfigReloadProperties properties,
102-
ConfigurationUpdateStrategy strategy,
103-
ConfigurationWatcherConfigurationProperties k8SConfigurationProperties,
104-
ThreadPoolTaskExecutor threadFactory, BusRefreshTrigger busRefreshTrigger) {
105-
return new BusEventBasedConfigMapWatcherChangeDetector(coreV1Api, environment, properties, strategy,
106-
configMapPropertySourceLocator, kubernetesNamespaceProvider, k8SConfigurationProperties,
107-
threadFactory, busRefreshTrigger);
108-
}
109-
110-
@Bean
111-
@ConditionalOnMissingBean(SecretsWatcherChangeDetector.class)
112-
@ConditionalOnBean(KubernetesClientSecretsPropertySourceLocator.class)
113-
public SecretsWatcherChangeDetector busSecretsChangeWatcher(AbstractEnvironment environment,
114-
CoreV1Api coreV1Api, KubernetesClientSecretsPropertySourceLocator secretsPropertySourceLocator,
115-
ConfigReloadProperties properties, KubernetesNamespaceProvider kubernetesNamespaceProvider,
116-
ConfigurationUpdateStrategy strategy,
117-
ConfigurationWatcherConfigurationProperties k8SConfigurationProperties,
118-
ThreadPoolTaskExecutor threadFactory, BusRefreshTrigger busRefreshTrigger) {
119-
return new BusEventBasedSecretsWatcherChangeDetector(coreV1Api, environment, properties, strategy,
120-
secretsPropertySourceLocator, kubernetesNamespaceProvider, k8SConfigurationProperties,
121-
threadFactory, busRefreshTrigger);
122-
}
123-
124-
}
125-
126-
@Configuration
127-
@Profile(KAFKA)
128-
@Import({ ContextFunctionCatalogAutoConfiguration.class, RefreshTriggerConfiguration.class })
129-
static class BusKafkaConfiguration {
130-
131-
@Bean
132-
@ConditionalOnMissingBean(ConfigMapWatcherChangeDetector.class)
133-
@ConditionalOnBean(KubernetesClientConfigMapPropertySourceLocator.class)
134-
public ConfigMapWatcherChangeDetector busConfigMapChangeWatcher(AbstractEnvironment environment,
135-
CoreV1Api coreV1Api, KubernetesClientConfigMapPropertySourceLocator configMapPropertySourceLocator,
136-
ConfigReloadProperties properties, KubernetesNamespaceProvider namespaceProvider,
137-
ConfigurationUpdateStrategy strategy,
138-
ConfigurationWatcherConfigurationProperties k8SConfigurationProperties,
139-
ThreadPoolTaskExecutor threadFactory, BusRefreshTrigger busRefreshTrigger) {
140-
return new BusEventBasedConfigMapWatcherChangeDetector(coreV1Api, environment, properties, strategy,
141-
configMapPropertySourceLocator, namespaceProvider, k8SConfigurationProperties, threadFactory,
142-
busRefreshTrigger);
143-
}
144-
145-
@Bean
146-
@ConditionalOnMissingBean(SecretsWatcherChangeDetector.class)
147-
@ConditionalOnBean(KubernetesClientSecretsPropertySourceLocator.class)
148-
public SecretsWatcherChangeDetector busSecretsChangeWatcher(AbstractEnvironment environment,
149-
CoreV1Api coreV1Api, KubernetesClientSecretsPropertySourceLocator secretsPropertySourceLocator,
150-
ConfigReloadProperties properties, ConfigurationUpdateStrategy strategy,
151-
ConfigurationWatcherConfigurationProperties k8SConfigurationProperties,
152-
ThreadPoolTaskExecutor threadFactory, KubernetesNamespaceProvider namespaceProvider,
153-
BusRefreshTrigger busRefreshTrigger) {
154-
return new BusEventBasedSecretsWatcherChangeDetector(coreV1Api, environment, properties, strategy,
155-
secretsPropertySourceLocator, namespaceProvider, k8SConfigurationProperties, threadFactory,
156-
busRefreshTrigger);
157-
}
158-
159-
}
160-
161-
@AutoConfiguration
162-
static class RefreshTriggerConfiguration {
163-
164-
@Bean
165-
@ConditionalOnMissingBean
166-
@Profile({ AMQP, KAFKA })
167-
public BusRefreshTrigger busRefreshTrigger(ApplicationEventPublisher applicationEventPublisher,
168-
BusProperties busProperties) {
169-
return new BusRefreshTrigger(applicationEventPublisher, busProperties.getId());
170-
}
171-
172-
@Bean
173-
@ConditionalOnMissingBean
174-
public HttpRefreshTrigger httpRefreshTrigger(KubernetesInformerReactiveDiscoveryClient client,
175-
ConfigurationWatcherConfigurationProperties properties, WebClient webClient) {
176-
return new HttpRefreshTrigger(client, properties, webClient);
177-
}
178-
179-
}
180-
18186
}

spring-cloud-kubernetes-controllers/spring-cloud-kubernetes-configuration-watcher/src/main/java/org/springframework/cloud/kubernetes/configuration/watcher/ConfigurationWatcherConfigurationProperties.java

+10
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,16 @@
2828
@ConfigurationProperties("spring.cloud.kubernetes.configuration.watcher")
2929
public class ConfigurationWatcherConfigurationProperties {
3030

31+
/**
32+
* AMQP profile name.
33+
*/
34+
public static final String AMQP = "bus-amqp";
35+
36+
/**
37+
* Kafka profile name.
38+
*/
39+
public static final String KAFKA = "bus-kafka";
40+
3141
/**
3242
* label to enable refresh/restart when using configmaps.
3343
*/
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
/*
2+
* Copyright 2013-2024 the original author or authors.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* https://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
17+
package org.springframework.cloud.kubernetes.configuration.watcher;
18+
19+
import org.springframework.boot.autoconfigure.condition.ConditionalOnCloudPlatform;
20+
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
21+
import org.springframework.boot.cloud.CloudPlatform;
22+
import org.springframework.cloud.bus.BusProperties;
23+
import org.springframework.cloud.kubernetes.client.discovery.reactive.KubernetesInformerReactiveDiscoveryClient;
24+
import org.springframework.context.ApplicationEventPublisher;
25+
import org.springframework.context.annotation.Bean;
26+
import org.springframework.context.annotation.Configuration;
27+
import org.springframework.context.annotation.Profile;
28+
import org.springframework.web.reactive.function.client.WebClient;
29+
30+
import static org.springframework.cloud.kubernetes.configuration.watcher.ConfigurationWatcherConfigurationProperties.AMQP;
31+
import static org.springframework.cloud.kubernetes.configuration.watcher.ConfigurationWatcherConfigurationProperties.KAFKA;
32+
33+
/**
34+
* @author wind57
35+
*/
36+
@Configuration(proxyBeanMethods = false)
37+
@ConditionalOnCloudPlatform(CloudPlatform.KUBERNETES)
38+
class RefreshTriggerAutoConfiguration {
39+
40+
@Bean
41+
@ConditionalOnMissingBean
42+
@Profile({ AMQP, KAFKA })
43+
BusRefreshTrigger busRefreshTrigger(ApplicationEventPublisher applicationEventPublisher,
44+
BusProperties busProperties) {
45+
return new BusRefreshTrigger(applicationEventPublisher, busProperties.getId());
46+
}
47+
48+
@Bean
49+
@ConditionalOnMissingBean
50+
HttpRefreshTrigger httpRefreshTrigger(KubernetesInformerReactiveDiscoveryClient client,
51+
ConfigurationWatcherConfigurationProperties properties, WebClient webClient) {
52+
return new HttpRefreshTrigger(client, properties, webClient);
53+
}
54+
55+
}
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
org.springframework.cloud.kubernetes.configuration.watcher.ConfigurationWatcherAutoConfiguration
22
org.springframework.cloud.kubernetes.configuration.watcher.ConfigUpdateStrategyAutoConfiguration
3+
org.springframework.cloud.kubernetes.configuration.watcher.BusKafkaAutoConfiguration
4+
org.springframework.cloud.kubernetes.configuration.watcher.BusRabbitAutoConfiguration
5+
org.springframework.cloud.kubernetes.configuration.watcher.RefreshTriggerAutoConfiguration

0 commit comments

Comments
 (0)