-
Notifications
You must be signed in to change notification settings - Fork 108
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change secret name to digitalocean #21
Conversation
@andrewsykim can you please comment on the namespace compatibility. I see that CCM is using |
volumeMounts: | ||
- name: plugin-dir | ||
mountPath: /csi/ | ||
# TODO(arslan): the registar is not implemented yet |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
registrar
CCM uses |
I see. I'm not sure why the CSI plugin should live in
Do you think it's better we change the default namespace for CCM to |
Andrew shared this with me and seems like CCM is deployed into There are two solutions I can think now:
Let me look into the second option and how others do the Kubernetes deployment story of a CSI plugin. |
Seems to me that if |
@aybabtme true that. Moving it to |
This means that users that already have created a token for cloud-controller-manager can use the same token for the CSI plugin Fixes #20
@aybabtme @andrewsykim moved to |
subjects: | ||
- kind: ServiceAccount | ||
name: csi-attacher | ||
namespace: default |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should this be kube-system
?
subjects: | ||
- kind: ServiceAccount | ||
name: csi-provisioner | ||
namespace: default |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
kube-system
subjects: | ||
- kind: ServiceAccount | ||
name: csi-doplugin | ||
namespace: default |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
kube-system
@lxfontes thanks for catching these. Fixed it. |
lgtm |
lgtm |
This means that users that already have created a token for
cloud-controller-manager can use the same token for the CSI plugin
Fixes #20