Skip to content

Commit

Permalink
[chore] add k8s deployment installation make target
Browse files Browse the repository at this point in the history
Signed-off-by: ChrsMark <chrismarkou92@gmail.com>
  • Loading branch information
ChrsMark committed May 27, 2024
1 parent 4fad287 commit 1a30d9e
Show file tree
Hide file tree
Showing 3 changed files with 115 additions and 2 deletions.
14 changes: 12 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -407,14 +407,24 @@ kind-build: kind-ready docker-otelcontribcol

.PHONY: kind-install-daemonset
kind-install-daemonset: kind-ready kind-uninstall-daemonset## Install a local Collector version into the cluster.
@echo "Installing Collector"
@echo "Installing daemonset collector"
helm install daemonset-collector-dev open-telemetry/opentelemetry-collector --values ./examples/kubernetes/daemonset-collector-dev.yaml

.PHONY: kind-uninstall-daemonset
kind-uninstall-daemonset: kind-ready
@echo "Uninstalling Collector"
@echo "Uninstalling daemonset collector"
helm uninstall --ignore-not-found daemonset-collector-dev

.PHONY: kind-install-deployment
kind-install-deployment: kind-ready kind-uninstall-deployment## Install a local Collector version into the cluster.
@echo "Installing deployment collector"
helm install deployment-collector-dev open-telemetry/opentelemetry-collector --values ./examples/kubernetes/deployment-collector-dev.yaml

.PHONY: kind-uninstall-deployment
kind-uninstall-deployment: kind-ready
@echo "Uninstalling deployment collector"
helm uninstall --ignore-not-found deployment-collector-dev

.PHONY: all-checklinks
all-checklinks:
$(MAKE) $(FOR_GROUP_TARGET) TARGET="checklinks"
Expand Down
93 changes: 93 additions & 0 deletions examples/kubernetes/deployment-collector-dev.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
mode: deployment

image:
repository: otelcontribcol-dev
tag: "0.0.1"
pullPolicy: IfNotPresent

command:
name: otelcontribcol

extraEnvs:
- name: K8S_NODE_NAME
valueFrom:
fieldRef:
fieldPath: spec.nodeName

clusterRole:
create: true
rules:
- apiGroups:
- ""
resources:
- events
- namespaces
- namespaces/status
- nodes
- nodes/spec
- pods
- pods/status
- replicationcontrollers
- replicationcontrollers/status
- resourcequotas
- services
verbs:
- get
- list
- watch
- apiGroups:
- apps
resources:
- daemonsets
- deployments
- replicasets
- statefulsets
verbs:
- get
- list
- watch
- apiGroups:
- extensions
resources:
- daemonsets
- deployments
- replicasets
verbs:
- get
- list
- watch
- apiGroups:
- batch
resources:
- jobs
- cronjobs
verbs:
- get
- list
- watch
- apiGroups:
- autoscaling
resources:
- horizontalpodautoscalers
verbs:
- get
- list
- watch

config:
exporters:
debug:
verbosity: detailed
receivers:
k8s_cluster:
collection_interval: 10s
metrics:
k8s.container.cpu_limit:
enabled: false

service:
pipelines:
metrics:
receivers: [k8s_cluster]
processors: [batch]
exporters: [debug]
10 changes: 10 additions & 0 deletions examples/kubernetes/dev-docs.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,13 @@ This only stands as a sample configuration and users need to tune this according

#### Uninstall the Daemonset
`make kind-uninstall-daemonset`

#### Install the Collector as Deployment
`make kind-install-deployment`

This command will install the Collector using the [`deployment-collector-dev.yaml`](./deployment-collector-dev.yaml)
configuration sample.
This only stands as a sample configuration and users need to tune this according to their needs.

#### Uninstall the Daemonset
`make kind-uninstall-daemonset`

0 comments on commit 1a30d9e

Please sign in to comment.