-
Notifications
You must be signed in to change notification settings - Fork 510
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bump minor version for kube-stack chart (#1285)
- Loading branch information
1 parent
b32c0b0
commit 40f65ff
Showing
56 changed files
with
204 additions
and
425 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
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
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
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
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
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
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
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
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
126 changes: 126 additions & 0 deletions
126
charts/opentelemetry-kube-stack/examples/prometheus-otel/rendered/collector.yaml
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,126 @@ | ||
--- | ||
# Source: opentelemetry-kube-stack/templates/collector.yaml | ||
apiVersion: opentelemetry.io/v1beta1 | ||
kind: OpenTelemetryCollector | ||
metadata: | ||
name: example-daemon | ||
namespace: default | ||
labels: | ||
helm.sh/chart: opentelemetry-kube-stack-0.1.0 | ||
app.kubernetes.io/version: "0.105.0" | ||
app.kubernetes.io/managed-by: Helm | ||
spec: | ||
managementState: managed | ||
mode: daemonset | ||
config: | ||
exporters: | ||
debug: {} | ||
otlp: | ||
endpoint: ingest.example.com:443 | ||
headers: | ||
access-token: ${ACCESS_TOKEN} | ||
processors: | ||
batch: | ||
send_batch_max_size: 1500 | ||
send_batch_size: 1000 | ||
timeout: 1s | ||
resourcedetection/env: | ||
detectors: | ||
- env | ||
override: false | ||
timeout: 2s | ||
receivers: | ||
otlp: | ||
protocols: | ||
grpc: | ||
endpoint: 0.0.0.0:4317 | ||
http: | ||
endpoint: 0.0.0.0:4318 | ||
prometheus: | ||
config: | ||
scrape_configs: [] | ||
service: | ||
pipelines: | ||
logs: | ||
exporters: | ||
- debug | ||
processors: | ||
- resourcedetection/env | ||
- batch | ||
receivers: | ||
- otlp | ||
metrics: | ||
exporters: | ||
- debug | ||
- otlp | ||
processors: | ||
- resourcedetection/env | ||
- batch | ||
receivers: | ||
- prometheus | ||
traces: | ||
exporters: | ||
- debug | ||
processors: | ||
- resourcedetection/env | ||
- batch | ||
receivers: | ||
- otlp | ||
image: "otel/opentelemetry-collector-k8s:0.103.1" | ||
imagePullPolicy: IfNotPresent | ||
upgradeStrategy: automatic | ||
hostNetwork: false | ||
shareProcessNamespace: false | ||
terminationGracePeriodSeconds: 30 | ||
resources: | ||
limits: | ||
cpu: 100m | ||
memory: 250Mi | ||
requests: | ||
cpu: 100m | ||
memory: 128Mi | ||
securityContext: | ||
{} | ||
targetAllocator: | ||
allocationStrategy: per-node | ||
enabled: true | ||
image: ghcr.io/open-telemetry/opentelemetry-operator/target-allocator:main | ||
prometheusCR: | ||
enabled: true | ||
podMonitorSelector: {} | ||
scrapeInterval: 30s | ||
serviceMonitorSelector: {} | ||
volumeMounts: | ||
env: | ||
- name: OTEL_K8S_NODE_NAME | ||
valueFrom: | ||
fieldRef: | ||
fieldPath: spec.nodeName | ||
- name: OTEL_K8S_NODE_IP | ||
valueFrom: | ||
fieldRef: | ||
fieldPath: status.hostIP | ||
- name: OTEL_K8S_NAMESPACE | ||
valueFrom: | ||
fieldRef: | ||
apiVersion: v1 | ||
fieldPath: metadata.namespace | ||
- name: OTEL_K8S_POD_NAME | ||
valueFrom: | ||
fieldRef: | ||
apiVersion: v1 | ||
fieldPath: metadata.name | ||
- name: OTEL_K8S_POD_IP | ||
valueFrom: | ||
fieldRef: | ||
apiVersion: v1 | ||
fieldPath: status.podIP | ||
- name: OTEL_RESOURCE_ATTRIBUTES | ||
value: "k8s.cluster.name=demo" | ||
|
||
- name: ACCESS_TOKEN | ||
valueFrom: | ||
secretKeyRef: | ||
key: access_token | ||
name: otel-collector-secret | ||
volumes: |
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
Oops, something went wrong.