forked from gravitational/teleport
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
integration: Add teletest namespace and instructions for Kubernetes t…
…ests (gravitational#7447)
- Loading branch information
Showing
2 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
## Generating a ServiceAccount to use for Teleport integration tests | ||
|
||
This should be done on a 'clean' k8s cluster i.e. one that doesn't already have Teleport installed for | ||
Kubernetes forwarding (and doesn't require it), as we delete the default Teleport `ClusterRole` and | ||
`ClusterRoleBinding` for security. | ||
|
||
``` | ||
# Check out the Teleport repo and change dir to it | ||
git clone https://github.com/gravitational/teleport | ||
cd teleport | ||
# generate a ServiceAccount using the get-kubeconfig script | ||
TELEPORT_NAMESPACE="ci-teleport" examples/k8s-auth/get-kubeconfig.sh | ||
# copy the generated kubeconfig, then add it to CI as a secret (out of band) | ||
mv kubeconfig INTEGRATION_CI_KUBECONFIG | ||
# add the additional required RBAC fixtures | ||
kubectl create -f fixtures/ci-teleport-rbac/ci-teleport.yaml | ||
# remove the additional teleport permissions that were added by the get-kubeconfig script | ||
# (as these are not needed for CI, we can remove them for greater security) | ||
kubectl delete clusterrole/teleport-role | ||
kubectl delete clusterrolebinding/teleport-crb | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters