-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
17 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
## Deploy a TLS cluster with HELM | ||
## Quickstart: deploy a TLS cluster with HELM | ||
|
||
kubectl apply -f tls_secret.yaml<br> | ||
helm install -f values-tls.yaml infinispan . | ||
kubectl apply -f test/tls_secret.yaml<br> | ||
kubectl apply -f test/transport_tls_secret.yaml<br> | ||
helm install -f test/tls_values.yaml infinispan . |
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,11 @@ | ||
#!/bin/bash | ||
|
||
yq --version | grep "yq (https://github.com/mikefarah/yq/) version v4.35.1" | ||
|
||
if [ $? -eq 0 ] | ||
then | ||
yq ea 'select(fileIndex == 0) * select(fileIndex == 1)' values.yaml test/tls_values.yaml.yq > test/tls_values.yaml | ||
else | ||
echo "ERROR: yq behaviour is strongly depended from version" | ||
echo " yq --version must match 'yq (https://github.com/mikefarah/yq/) version v4.35.1'" | ||
fi |