Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add the ability to add Environment variables as a configmap #677

Open
kharouny opened this issue Jan 19, 2024 · 1 comment
Open

Add the ability to add Environment variables as a configmap #677

kharouny opened this issue Jan 19, 2024 · 1 comment
Labels
custom kube options Adding options related to customizing parts of the default Kubernetes resources. enhancement New feature or request good first issue Good for newcomers

Comments

@kharouny
Copy link

Statefulsets have the option to add Environment variables as configmaps like so...

apiVersion: apps/v1
kind: StatefulSet
metadata:
  name: my-statefulset
spec:
  replicas: 1
  template:
    spec:
      containers:
      - name: my-app-container
        image: your-image:tag
        envFrom:
        - configMapRef:
            name: my-app-config

Currently the SolrCloud config only supports adding additional EnvVariables in line.

@HoustonPutman
Copy link
Contributor

Sounds good to me, it would likely be a pretty good first PR if you are interested in making a contribution!

@HoustonPutman HoustonPutman added enhancement New feature or request good first issue Good for newcomers custom kube options Adding options related to customizing parts of the default Kubernetes resources. labels Mar 26, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
custom kube options Adding options related to customizing parts of the default Kubernetes resources. enhancement New feature or request good first issue Good for newcomers
Projects
None yet
Development

No branches or pull requests

2 participants