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

feat: allow env vars to be set #23

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

amalucelli
Copy link

It would be useful to set environment variables to the container such as JAVA_OPTS.

This is before the changes:

» helm template . | grep container -A5
      containers:
        - name: tika
          securityContext:
            allowPrivilegeEscalation: true
            capabilities:
              drop:

This is after the changes, setting the env:

» helm template . | grep container -A5
      containers:
        - name: tika
          env:
            - name: SOME_VAR
              value: some value
          securityContext:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant