amalucelli opened a new pull request, #23:
URL: https://github.com/apache/tika-helm/pull/23
It would be useful to set environment variables to the container such as
`JAVA_OPTS`.
This is before the changes:
```sh
» helm template . | grep container -A5
containers:
- name: tika
securityContext:
allowPrivilegeEscalation: true
capabilities:
drop:
```
This is after the changes, setting the `env`:
```sh
» helm template . | grep container -A5
containers:
- name: tika
env:
- name: SOME_VAR
value: some value
securityContext:
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]