Skip to content

Commit

Permalink
Merge pull request #15029 from Sgitario/fix_typo_kubernetes_docs
Browse files Browse the repository at this point in the history
Fix typo in kubernete docs and knative test
  • Loading branch information
gsmet authored Feb 12, 2021
2 parents 6619ec2 + ae22ebf commit 3be6060
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/src/main/asciidoc/deploying-to-kubernetes.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ To simplify things, quarkus provides single step alternative:

[source,properties]
----
quarkus.kubernetes.app-secert=<name of the secret containing the configuration>
quarkus.kubernetes.app-secret=<name of the secret containing the configuration>
----

or
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public void assertGeneratedResources() throws IOException {
assertThat(revisionSpec.getVolumes()).haveAtLeastOne(new Condition<Volume>(
v -> v.getName().equals("client-crts")
&& v.getSecret().getSecretName().equals("clientcerts"),
"Has secret volume named client-crts referencing secert clientcerts"));
"Has secret volume named client-crts referencing secret clientcerts"));
assertThat(revisionSpec.getVolumes()).haveAtLeastOne(new Condition<Volume>(
v -> v.getName().equals("client-cfg") && v.getConfigMap().getName().equals("clientconfig"),
"Has config-map named client-cfg referencing configmap clientconfig"));
Expand Down

0 comments on commit 3be6060

Please sign in to comment.