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
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -94,7 +94,7 @@ If you want to learn more about building native executables, please consult <htt
94
94
## Related Guides
95
95
96
96
- Operator SDK ([guide](https://docs.quarkiverse.io/quarkus-operator-sdk/dev/index.html)): Quarkus extension for the Java Operator SDK (https://javaoperatorsdk.io)
97
-
- Helm ([guide](https://docs.quarkiverse.io/quarkus-helm/dev/index.html)): Quarkus extension for Kubernetes Helm chars
97
+
- Helm ([guide](https://docs.quarkiverse.io/quarkus-helm/dev/index.html)): Quarkus extension for Kubernetes Helm charts
98
98
- SmallRye Health ([guide](https://quarkus.io/guides/smallrye-health)): Monitor service health
99
99
- Micrometer metrics ([guide](https://quarkus.io/guides/micrometer)): Instrument the runtime and your application with dimensional metrics using Micrometer.
100
100
- YAML Configuration ([guide](https://quarkus.io/guides/config-yaml)): Use YAML to configure your Quarkus application
thrownewIllegalStateException("ClusterConnection SecretRef not found [clusterConnection.namespace=%s, clusterConnection.name=%s, secret.namespace=%s, secret.name=%s]".formatted(
38
-
metadata.getNamespace(),
39
-
metadata.getName(),
45
+
thrownewIllegalStateException("SecretRef not found [secret.namespace=%s, secret.name=%s]".formatted(
40
46
secretNamespace,
41
47
secretName
42
48
));
43
49
}
44
50
45
51
if (!secret.getType().equals(SECRET_TYPE_BASIC_AUTH)) {
46
-
thrownewIllegalArgumentException("The ClusterConnection SecretRef is of the wrong type [clusterConnection.namespace=%s, clusterConnection.name=%s, secret.namespace=%s, secret.name=%s, expected.secret.type=%s, actual.secret.type=%s]".formatted(
47
-
metadata.getNamespace(),
48
-
metadata.getName(),
52
+
thrownewIllegalArgumentException("The SecretRef is of the wrong type [secret.namespace=%s, secret.name=%s, expected.secret.type=%s, actual.secret.type=%s]".formatted(
49
53
secretNamespace,
50
54
secretName,
51
55
SECRET_TYPE_BASIC_AUTH,
@@ -55,9 +59,7 @@ public static Credentials getSecretRefCredentials(
55
59
56
60
vardata = secret.getData();
57
61
if (data == null || data.isEmpty()) {
58
-
thrownewIllegalStateException("The ClusterConnection SecretRef has no data set [clusterConnection.namespace=%s, clusterConnection.name=%s, secret.namespace=%s, secret.name=%s]".formatted(
59
-
metadata.getNamespace(),
60
-
metadata.getName(),
62
+
thrownewIllegalStateException("The SecretRef has no data set [secret.namespace=%s, secret.name=%s]".formatted(
61
63
secretNamespace,
62
64
secretName
63
65
));
@@ -72,9 +74,7 @@ public static Credentials getSecretRefCredentials(
0 commit comments