Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Certificate verification issue while enabling metrics and trace type of log data for AKS cluster #1279

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,7 @@ receivers:
extra_metadata_labels:
- container.id
# - k8s.volume.type
insecure_skip_verify: {{ .Values.splunkObservability.insecureSkipVerify }}

signalfx:
endpoint: 0.0.0.0:9943
Expand Down
4 changes: 4 additions & 0 deletions helm-charts/splunk-otel-collector/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,10 @@
"infrastructureMonitoringEventsEnabled": {
"description": "Send Kubernetes events to Splunk Observability Infrastructure Monitoring",
"type": "boolean"
},
"insecureSkipVerify": {
"description": "Skip Verification of SSL certificate",
"type": "boolean"
}
},
"anyOf": [
Expand Down
3 changes: 3 additions & 0 deletions helm-charts/splunk-otel-collector/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,9 @@ splunkObservability:
# If you don't use AlwaysOn Profiling for Splunk APM, you can disable it.
profilingEnabled: false

# Whether to skip checking the certificate of the K8s endpoint.
insecureSkipVerify: false

################################################################################
# Logs collection engine:
# - `fluentd`: deploy a fluentd sidecar that will collect logs and send them to
Expand Down
Loading