You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
NOTE: Quarkus will apply the manifests in the order they are specified in the list.
102
+
103
+
NOTE: Quarkus will await resources such as deployments to be ready before moving on to the next manifest.
104
+
All applied resources are guaranteed to be ready by the time your application finishes startup.
105
+
91
106
=== Deploying helm charts
92
107
`quarkus.kubernetes-client.devservices.manifests` only supports manifests. If you want to deploy a helm chart, you can use the `k3s` flavor and deploy a `HelmChart` manifest. See https://docs.k3s.io/helm for more information on how to use helm charts with k3s.
Copy file name to clipboardExpand all lines: extensions/kubernetes-client/deployment/src/main/java/io/quarkus/kubernetes/client/deployment/DevServicesKubernetesProcessor.java
Copy file name to clipboardExpand all lines: integration-tests/kubernetes-client-devservices/src/test/java/io/quarkus/kubernetes/client/devservices/it/DevServicesKubernetesTest.java
+9-2Lines changed: 9 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -26,8 +26,15 @@ public void shouldReturnAllKeys() {
26
26
}
27
27
28
28
@Test
29
-
@DisplayName("specified manifest must be applied to the cluster by the dev service")
30
-
publicvoidmanifestIsApplied() {
29
+
@DisplayName("specified manifest in the resources folder must be applied to the cluster by the dev service")
0 commit comments