Issues with completing Lab 1-C
Running Ubuntu version 18.04, Kubernetes version 1.17
When I go to the part of running the "kubectl apply -f fluent/fluentd-ds.yaml" command. I get an error.
See screenshot for the config and error message.
Note that I have changed the apiVersion: "extensions/v1beta1" to "apiVersion: apps/v1" as well since it was also producing an error.
Need help since I am stuck on this.... Thanks.

Comments
-
Hi Joel,
From what I can see, the
volumesarray under the Daemonset is nested under the container entry. You'll need to correct the spacing and move it back so thevolumesarray and its nested entries are in line withcontainersHere is a correct spec for your spacing (make sure you create the fluentd-config configmap before applying it):
apiVersion: apps/v1 kind: DaemonSet metadata: name: fluentd-ds labels: k8s-app: fluentd-logging version: v1 spec: selector: matchLabels: k8s-app: fluentd-logging template: metadata: labels: k8s-app: fluentd-logging version: v1 spec: tolerations: - key: node-role.kubernetes.io/master effect: NoSchedule terminationGracePeriodSeconds: 30 containers: - name: fluentd-ds image: fluent/fluentd:latest resources: limits: memory: 200Mi env: - name: FLUENTD_CONF value: "fluentd-kube.conf" volumeMounts: - name: fluentd-conf mountPath: /fluentd/etc volumes: - name: fluentd-conf configMap: name: fluentd-configOther corrections/changes include:
- Changed the apiGroup is set to apps/v1
- Added the following block to the spec:
selector: matchLabels: k8s-app: fluentd-logging- Changed to the fluent/fluentd:latest image. fluent/fluentd:stable is no longer being updated.
Thank you for the report!
0 -
Hi Christian,
It worked! Thanks! Was able to complete my module.
0
Categories
- All Categories
- 178 LFX Mentorship
- 178 LFX Mentorship: Linux Kernel
- 775 Linux Foundation IT Professional Programs
- 384 Cloud Engineer IT Professional Program
- 175 Advanced Cloud Engineer IT Professional Program
- 75 DevOps IT Professional Program - Discontinued
- 7 DevOps & GitOps IT Professional Program
- 103 Cloud Native Developer IT Professional Program
- 7.7K Training Courses & Learning Paths
- 13 AI & ML Training
- 1 Blockchain & Decentralized Identity Training
- 35 Cloud & Containers Training
- 3 Cybersecurity Training
- 3 DevOps & Site-Reliability Training
- 2 Linux Kernel Development Training
- 2 Networking Training
- 2 Open Source Best Practice Training
- 5 System Administration Training
- 1 System Engineering Training
- 6 Web & Application Development Training
- 798 Hardware
- 202 Drivers
- 68 I/O Devices
- 37 Monitors
- 96 Multimedia
- 173 Networking
- 91 Printers & Scanners
- 92 Storage
- 773 Linux Distributions
- 81 Debian
- 68 Fedora
- 24 Linux Mint
- 13 Mageia
- 24 openSUSE
- 151 Red Hat Enterprise
- 32 Slackware
- 13 SUSE Enterprise
- 356 Ubuntu
- 472 Linux System Administration
- 31 Cloud Computing
- 73 Command Line/Scripting
- Github systems admin projects
- 103 Linux Security
- 79 Network Management
- 102 System Management
- 46 Web Management
- 166 Mobile Computing
- 32 Android
- 119 Development
- 1.2K New to Linux
- 1K Getting Started with Linux
- 407 Off Topic
- 128 Introductions
- 35 Study Material
- 1.1K Programming and Development
- 311 Kernel Development
- 723 Software Development
- 1K Software
- 418 Applications
- 183 Command Line
- 5 Compiling/Installing
- 71 Games
- 320 Installation
- Archived
- 183 Small Talk
- 2 LFD140 Class Forum
- 1.4K LFS258 Class Forum
Upcoming Training
-
August 20, 2018
Kubernetes Administration (LFS458)
-
August 20, 2018
Linux System Administration (LFS301)
-
August 27, 2018
Open Source Virtualization (LFS462)
-
August 27, 2018
Linux Kernel Debugging and Security (LFD440)