-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
1 parent
e1e1d92
commit 19a41a0
Showing
4 changed files
with
119 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
76 changes: 76 additions & 0 deletions
76
...r-core/src/main/java/io/micronaut/starter/feature/distributedconfig/KubernetesConfig.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
/* | ||
* Copyright 2020 original authors | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package io.micronaut.starter.feature.distributedconfig; | ||
|
||
import javax.inject.Singleton; | ||
|
||
import io.micronaut.starter.application.ApplicationType; | ||
import io.micronaut.starter.application.generator.GeneratorContext; | ||
import io.micronaut.starter.feature.FeatureContext; | ||
import io.micronaut.starter.feature.k8s.Kubernetes; | ||
|
||
/** | ||
* Adds support for Kubernetes config maps configuration. | ||
* | ||
* @author alvaro | ||
* @since 2.0.0 | ||
*/ | ||
@Singleton | ||
public class KubernetesConfig implements DistributedConfigFeature { | ||
|
||
private final Kubernetes kubernetes; | ||
|
||
public KubernetesConfig(Kubernetes kubernetes) { | ||
this.kubernetes = kubernetes; | ||
} | ||
|
||
@Override | ||
public String getName() { | ||
return "config-kubernetes"; | ||
} | ||
|
||
@Override | ||
public String getTitle() { | ||
return "Kubernetes Distributed Configuration"; | ||
} | ||
|
||
@Override | ||
public String getDescription() { | ||
return "Adds support for Distributed Configuration with Kubernetes ConfigMap"; | ||
} | ||
|
||
@Override | ||
public void processSelectedFeatures(FeatureContext featureContext) { | ||
if (!featureContext.isPresent(Kubernetes.class)) { | ||
featureContext.addFeature(kubernetes); | ||
} | ||
} | ||
|
||
@Override | ||
public boolean supports(ApplicationType applicationType) { | ||
return applicationType != ApplicationType.CLI && applicationType != ApplicationType.FUNCTION; | ||
} | ||
|
||
@Override | ||
public void apply(GeneratorContext generatorContext) { | ||
generatorContext.getBootstrapConfig().put("micronaut.config-client.enabled", true); | ||
} | ||
|
||
@Override | ||
public String getMicronautDocumentation() { | ||
return "https://micronaut-projects.github.io/micronaut-kubernetes/latest/guide/index.html"; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters