Thanks to visit codestin.com
Credit goes to github.com

Skip to content

feat(helm): add volume mounts & cert vars #10

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

Merged
merged 1 commit into from
Jul 26, 2023
Merged

Conversation

ericpaulsen
Copy link
Member

closes #9

this PR adds support for mounting volumes into the coder-logstream-kube container, and adds values for configuring the SSL_CERT_FILE and SSL_CERT_DIR envrionment variables.

since our customers typically leverage self-signed certificates, they need to add the Coder server certificate into coder-logstream-kube to establish the connection. here's an example values.yaml file that accomplishes this use-case:

volumes:
  - name: "my-volume"
    secret:
      secretName: cert-secret
volumeMounts:
  - name: "my-volume"
    mountPath: "/mnt/my-volume"
image:
  sslCertFile: "/mnt/my-volume/cert.crt"
  sslCertDir: "/mnt/my-volume"

@ericpaulsen ericpaulsen added the enhancement New feature or request label Jul 26, 2023
@ericpaulsen ericpaulsen requested a review from kylecarbs July 26, 2023 19:03
@ericpaulsen ericpaulsen self-assigned this Jul 26, 2023
@ericpaulsen ericpaulsen merged commit 8c08271 into main Jul 26, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Custom Certificates Through Helm Chart
2 participants