-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Volume mount serviceBinding credentials onto workloads
- Add ClusterRole required by the ServiceBinding Controller to fetch the referenced CFServiceBinding object - Add installation of ServiceBinding controller to `deploy-on-kind` script. - Update README with manual installation instructions Co-authored-by: Akira Wong <[email protected]>
- Loading branch information
1 parent
85ce3b5
commit f50262f
Showing
5 changed files
with
57 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
17 changes: 17 additions & 0 deletions
17
controllers/config/rbac/cfservicebinding_reconciler_role.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,17 @@ | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRole | ||
metadata: | ||
name: cfservicebinding-reconciler-role | ||
labels: | ||
servicebinding.io/controller: "true" # matches the aggregation rule selector | ||
rules: | ||
- apiGroups: | ||
- services.cloudfoundry.org | ||
resources: | ||
- cfservicebindings | ||
verbs: | ||
- get | ||
- list | ||
- watch | ||
- update | ||
- patch |
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