Kubernetes
For using our containers on Kubernetes, we recommend our sister project TrueCharts. That way you get the full benefit of much additional testing prior to deployment.
Passing Arguments
Section titled “Passing Arguments”Some applications only allow certain configurations via command-line arguments rather than environment variables. For such cases, refer to the Kubernetes documentation on defining commands and arguments for a container.
Specify the desired arguments as shown below:
args: - --port - "8080"Security Context
Section titled “Security Context”Our containers are designed to run rootless. Set your pod security context accordingly:
securityContext: runAsUser: 568 runAsGroup: 568 fsGroup: 568