Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 963101d

Browse files
committedSep 14, 2023
feat: add links to configuration reference, section on self-signed certs
Fixes #122 Signed-off-by: Chris Laprun <[email protected]>
1 parent 3e58e0b commit 963101d

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed
 

‎pkg/quarkus/v1alpha/scaffolds/internal/templates/applicationproperties.go

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,12 @@ func (f *ApplicationPropertiesFile) SetTemplateDefaults() error {
4747
const ApplicationPropertiesTemplate = `quarkus.container-image.build=true
4848
#quarkus.container-image.group=
4949
quarkus.container-image.name={{ .ProjectName }}-operator
50-
# set to false to prevent CRDs from being applied to the cluster automatically (only applies to dev mode, CRD applying is disabled in prod)
50+
51+
# Set to false to prevent CRDs from being applied to the cluster automatically (only applies to dev mode, CRD applying is disabled in prod)
52+
# See https://docs.quarkiverse.io/quarkus-operator-sdk/dev/index.html#extension-configuration-reference for the complete list of available configuration options
5153
# quarkus.operator-sdk.crd.apply=false
54+
55+
# Uncomment this to prevent the client from trusting self-signed certificates (mostly useful when using a local cluster for testing)
56+
# See https://quarkus.io/guides/kubernetes-client#configuration-reference for the complete list of Quarkus Kubernetes client configuration options
57+
# quarkus.kubernetes-client.trust-certs=false
5258
`

0 commit comments

Comments
 (0)
Please sign in to comment.