-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[v16] helm: Add support for jamf_service to the teleport-kube-agent H…
…elm chart (#42604) * Add jamf_service support to the Helm chart * Add tests for jamf_service * Remove unnecessary comments * Update README * Update values schema * Update docs * Commit missing lint files * Update test snapshots * Fix Secret tests * Update docs * Add support for Jamf API Client Credentials * Update snapshots * Unify Jamf password/Client Secret into jamfSecret key in Secret * Update snapshots * Add lint files * Update docs * Update image version in tests * Add words to a dictionary * Apply suggestions from code review Co-authored-by: Hugo Shaka <hugo.hervieux@goteleport.com> * Drop support for Jamf username and password auth * Update image tags --------- Co-authored-by: Hugo Shaka <hugo.hervieux@goteleport.com>
- Loading branch information
1 parent
33e4b93
commit dfc0901
Showing
21 changed files
with
933 additions
and
47 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
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
52 changes: 27 additions & 25 deletions
52
docs/pages/reference/helm-reference/teleport-kube-agent.mdx
Large diffs are not rendered by default.
Oops, something went wrong.
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
8 changes: 8 additions & 0 deletions
8
examples/chart/teleport-kube-agent/.lint/jamf-service-existing-secret.yaml
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,8 @@ | ||
authToken: auth-token | ||
proxyAddr: proxy.example.com:3080 | ||
roles: jamf | ||
jamfApiEndpoint: "https://testjamf.jamfcloud.com/api" | ||
jamfClientId: teleport-jamf-client-id | ||
jamfCredentialsSecret: | ||
create: false | ||
name: existing-teleport-jamf-secret |
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,6 @@ | ||
authToken: auth-token | ||
proxyAddr: proxy.example.com:3080 | ||
roles: jamf | ||
jamfApiEndpoint: "https://testjamf.jamfcloud.com/api" | ||
jamfClientId: teleport-jamf-client-id | ||
jamfClientSecret: secret-jamf-client-secret |
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
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
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
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
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
Oops, something went wrong.