Skip to content

Commit

Permalink
Fix groups for various resources (kubeflow#1380)
Browse files Browse the repository at this point in the history
  • Loading branch information
activatedgeek authored and k8s-ci-robot committed Aug 17, 2018
1 parent cf4e136 commit 1993d56
Showing 1 changed file with 26 additions and 7 deletions.
33 changes: 26 additions & 7 deletions kubeflow/core/jupyterhub.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -233,16 +233,24 @@
],
resources: [
"pods",
"deployments",
"services",
"jobs",
],
verbs: [
"get",
"watch",
"list",
"create",
"delete",
"*",
],
},
{
apiGroups: [
"",
"apps",
"extensions",
],
resources: [
"deployments",
"replicasets",
],
verbs: [
"*",
],
},
{
Expand All @@ -256,6 +264,17 @@
"*",
],
},
{
apiGroups: [
"batch",
],
resources: [
"jobs",
],
verbs: [
"*",
],
},
],
},

Expand Down

0 comments on commit 1993d56

Please sign in to comment.