python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
How to use configmap in openshift to read activemq.xml
I am new to openshift/k8s. I have a requirement to enable schedulerSupport in ActiveMQ container.
Current config:
<broker xmlns="http://activemq.apache.org/schema/core" "brokerName=&...
Anish Kumar
Votes: 0
Answers: 1
How can I get configmap value where the key is dynamic in Kubernetes
In one of my deployment files, I want to set an environment variable. The variable is KUBE_VERSION and values must be fetched from a ConfigMap.
kube_1_21: 1.21.10_1550
This is part of ConfigMap whe...

ambikanair
Votes: 0
Answers: 1
helm chart getting secrets and configmap values using envFrom
I m trying to inject env vars in my helm chart deployment file. my values file looks like this.
values.yaml
envFrom:
- configMapRef:
name: my-config
- secretRef:
name: my-secret
I wa...
nada809
Votes: 0
Answers: 1
How to create a Kubernetes configMap from part of a yaml file?
As I know the way to create a configMap in Kubernetes from a file is to use:
--from-file option for kubectl
What I am looking for is a way to only load part of the yaml file into the configMap.
Exampl...
nsteiner
Votes: 0
Answers: 2