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

Vnet testing #71

Draft
wants to merge 24 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion helm/teleport-kube-agent/ci/ci-values.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
proxyAddr: "teleport.demo.gaws.gigantic.io:443"
authToken: "test"
kubeClusterName: "test"
roles: "kube"
roles: "kube,app"
17 changes: 15 additions & 2 deletions helm/teleport-kube-agent/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ global:
# ```yaml
# roles: kube,app,discovery
# ```
roles: "kube"
roles: kube, app

# proxyAddr(string) -- provides the public-facing Teleport Proxy Service endpoint
# which should be used to join the cluster. This is the same URL used to access
Expand Down Expand Up @@ -141,7 +141,20 @@ kubeClusterName: ""
# Application Service configuration in the [Application Service Configuration
# Reference](../../../enroll-resources/application-access/reference.mdx#configuration).
# </Admonition>
apps: []
apps:
- name: grafana-golem-vnet
uri: "http://grafana.monitoring.svc.cluster.local:80"
public_addr: "grafana-golem.teleport.giantswarm.io"
labels:
env: production
app: grafana

- name: kyverno-golem-vnet
uri: "http://kyverno-ui.kyverno.svc.cluster.local:8080"
public_addr: "kyverno-golem.teleport.giantswarm.io"
labels:
env: production
app: kyverno

# appResources(list) -- is a set of labels the agent will monitor. Any application
# matching those labels will be proxied by the agent. See [the Teleport
Expand Down