Skip to content

Commit

Permalink
Add configmaps as a resource to the spark driver role rules
Browse files Browse the repository at this point in the history
  • Loading branch information
deadlycoconuts committed Jan 3, 2025
1 parent 50f3887 commit d3ef1e7
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions api/batch/manifest.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,18 @@ var (
"*",
},
},
{
// Allow driver to manage configmaps
APIGroups: []string{
"", // indicates the core API group
},
Resources: []string{
"configmaps",
},
Verbs: []string{
"*",
},
},
}
)

Expand Down

0 comments on commit d3ef1e7

Please sign in to comment.