...

/

Injecting Configuration from a Single File

Injecting Configuration from a Single File

In this lesson, we will learn to inject configuration from a single file using the ConfigMap Volume.

Creating a ConfigMap

In its purest, and probably the most common form, a ConfigMap takes a single file. For example, we can create one from the cm/prometheus-conf.yml file.

Press + to interact
kubectl create cm my-config \
--from-file=cm/prometheus-conf.yml

We created a ConfigMap (cm) called my-config. The data of the map is the content of the cm/prometheus-conf.yml file.

Looking into the Description

Let’s describe it, and see what we’ll get.

Press + to interact
kubectl describe cm my-config

The output is as follows.

Press + to interact
Name: my-config
Namespace: default
Labels: <none>
Annotations: <none>
Data
====
prometheus-conf.yml:
----
global:
scrape_interval: 15s
scrape_configs:
- job_name: prometheus
metrics_path: /prometheus/metrics
static_configs:
- targets:
- localhost:9090
Events: <none>

The important part is located below Data. We can see the key which, in this case, is the name of the file ( ...

Access this course and 1400+ top-rated courses and projects.