Skip to content

Commit f8bcf76

Browse files
committed
feat: add links to configuration reference, section on self-signed certs
Fixes operator-framework#122 Signed-off-by: Chris Laprun <[email protected]>
1 parent 3e58e0b commit f8bcf76

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

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

+7-1
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)