Skip to content

Commit 87660a3

Browse files
author
charlyF
committed
adding details and template for GKE
1 parent ca6f5bc commit 87660a3

File tree

3 files changed

+9
-19
lines changed

3 files changed

+9
-19
lines changed

02-path-working-with-clusters/201-cluster-monitoring/readme.adoc

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,7 @@ It gives a unified view of an entire stack, allowing to seamlessly monitor metri
1919

2020
== Prerequisites
2121

22-
<<<<<<< HEAD
2322
In order to perform exercises in this chapter, you’ll need to deploy configurations to a Kubernetes cluster. To create an EKS-based Kubernetes cluster, use the link:../../01-path-basics/102-your-first-cluster#create-a-kubernetes-cluster-with-eks[AWS CLI] (recommended). If you wish to create a Kubernetes cluster without EKS, you can instead use link:../../01-path-basics/102-your-first-cluster#alternative-create-a-kubernetes-cluster-with-kops[kops].
24-
=======
25-
In order to perform the tasks in this chapter, you must deploy the configurations to an AWS EKS cluster. To create an AWS EKS cluster, use the link:../../01-path-basics/102-your-first-cluster#create-a-kubernetes-cluster-with-eks[AWS CLI] (recommended), or alternatively, link:../../01-path-basics/102-your-first-cluster#alternative-create-a-kubernetes-cluster-with-kops[kops].
26-
>>>>>>> cb97ccf41047e5dee14a4c52c9c261ed7241b1ad
2723

2824
All configuration files for this chapter are in the link:templates[201-cluster-monitoring/templates] directory.
2925

02-path-working-with-clusters/201-cluster-monitoring/templates/datadog/agent.yaml

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,6 @@ spec:
3030
value: "true"
3131
- name: DD_PROCESS_AGENT_ENABLED
3232
value: "true"
33-
- name: DD_LOGS_ENABLED
34-
value: "true"
35-
- name: DD_LOGS_CONFIG_CONTAINER_COLLECT_ALL
36-
value: "true"
3733
- name: HOST_PROC
3834
value: /host/proc
3935
- name: HOST_SYS
@@ -47,11 +43,6 @@ spec:
4743
- name: cgroups
4844
mountPath: /host/sys/fs/cgroup
4945
readOnly: true
50-
- name: passwd
51-
mountPath: /etc/passwd
52-
readOnly: true
53-
- name: pointerdir
54-
mountPath: /opt/datadog-agent/run
5546
volumes:
5647
- hostPath:
5748
path: /run/docker.sock
@@ -62,12 +53,6 @@ spec:
6253
- hostPath:
6354
path: /sys/fs/cgroup
6455
name: cgroups
65-
- hostPath:
66-
path: /etc/passwd
67-
name: passwd
68-
- hostPath:
69-
path: /opt/datadog-agent/run
70-
name: pointerdir
7156
---
7257
apiVersion: v1
7358
kind: Service
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
kind: StorageClass
2+
apiVersion: storage.k8s.io/v1
3+
metadata:
4+
name: fast
5+
provisioner: kubernetes.io/gce-pd
6+
parameters:
7+
type: pd-standard
8+
zones: us-central1-a
9+
replication-type: none

0 commit comments

Comments
 (0)