forked from quarkusio/quarkus
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request quarkusio#10926 from geoand/quarkusio#10925
Make sure that minikube manifests have all env vars
- Loading branch information
Showing
4 changed files
with
91 additions
and
2 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
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
73 changes: 73 additions & 0 deletions
73
...us-standard-way/src/test/java/io/quarkus/it/kubernetes/MinikubeWithMixedStyleEnvTest.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,73 @@ | ||
package io.quarkus.it.kubernetes; | ||
|
||
import static org.assertj.core.api.Assertions.assertThat; | ||
|
||
import java.io.IOException; | ||
import java.nio.file.Path; | ||
import java.util.List; | ||
|
||
import org.jboss.shrinkwrap.api.ShrinkWrap; | ||
import org.jboss.shrinkwrap.api.spec.JavaArchive; | ||
import org.junit.jupiter.api.Test; | ||
import org.junit.jupiter.api.extension.RegisterExtension; | ||
|
||
import io.fabric8.kubernetes.api.model.EnvFromSource; | ||
import io.fabric8.kubernetes.api.model.HasMetadata; | ||
import io.fabric8.kubernetes.api.model.apps.Deployment; | ||
import io.quarkus.test.ProdBuildResults; | ||
import io.quarkus.test.ProdModeTestResults; | ||
import io.quarkus.test.QuarkusProdModeTest; | ||
|
||
public class MinikubeWithMixedStyleEnvTest { | ||
|
||
@RegisterExtension | ||
static final QuarkusProdModeTest config = new QuarkusProdModeTest() | ||
.setArchiveProducer(() -> ShrinkWrap.create(JavaArchive.class).addClasses(GreetingResource.class)) | ||
.setApplicationName("minikube-with-mixed-style-env") | ||
.setApplicationVersion("0.1-SNAPSHOT") | ||
.withConfigurationResource("minikube-with-mixed-style-env.properties"); | ||
|
||
@ProdBuildResults | ||
private ProdModeTestResults prodModeTestResults; | ||
|
||
@Test | ||
public void assertGeneratedResources() throws IOException { | ||
Path kubernetesDir = prodModeTestResults.getBuildDir().resolve("kubernetes"); | ||
assertThat(kubernetesDir) | ||
.isDirectoryContaining(p -> p.getFileName().endsWith("minikube.json")) | ||
.isDirectoryContaining(p -> p.getFileName().endsWith("minikube.yml")); | ||
List<HasMetadata> kubernetesList = DeserializationUtil | ||
.deserializeAsList(kubernetesDir.resolve("minikube.yml")); | ||
|
||
assertThat(kubernetesList).filteredOn(i -> "Deployment".equals(i.getKind())).hasOnlyOneElementSatisfying(i -> { | ||
assertThat(i).isInstanceOfSatisfying(Deployment.class, d -> { | ||
assertThat(d.getSpec()).satisfies(deploymentSpec -> { | ||
assertThat(deploymentSpec.getTemplate()).satisfies(t -> { | ||
assertThat(t.getSpec()).satisfies(podSpec -> { | ||
assertThat(podSpec.getContainers()).hasOnlyOneElementSatisfying(container -> { | ||
assertThat(container.getEnv()) | ||
.filteredOn(env -> "FROMFIELD".equals(env.getName())) | ||
.hasOnlyOneElementSatisfying( | ||
env -> assertThat(env.getValueFrom().getFieldRef().getFieldPath()) | ||
.isEqualTo("metadata.name")); | ||
assertThat(container.getEnv()) | ||
.filteredOn(env -> "ENVVAR".equals(env.getName())) | ||
.hasOnlyOneElementSatisfying(env -> assertThat(env.getValue()).isEqualTo("value")); | ||
final List<EnvFromSource> envFrom = container.getEnvFrom(); | ||
assertThat(envFrom).hasSize(2); | ||
assertThat(envFrom) | ||
.filteredOn(e -> e.getSecretRef() != null) | ||
.hasOnlyOneElementSatisfying( | ||
e -> assertThat(e.getSecretRef().getName()).isEqualTo("secretName")); | ||
assertThat(envFrom) | ||
.filteredOn(e -> e.getConfigMapRef() != null) | ||
.hasOnlyOneElementSatisfying( | ||
e -> assertThat(e.getConfigMapRef().getName()).isEqualTo("configName")); | ||
}); | ||
}); | ||
}); | ||
}); | ||
}); | ||
}); | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
...bernetes/quarkus-standard-way/src/test/resources/minikube-with-mixed-style-env.properties
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,7 @@ | ||
quarkus.kubernetes.deployment-target=minikube | ||
quarkus.kubernetes.env-vars.envvar.value=value | ||
quarkus.kubernetes.env-vars.my-name.secret=secretName | ||
quarkus.kubernetes.env.fields.fromfield=metadata.name | ||
quarkus.kubernetes.env.configmaps=configName | ||
|
||
|