Hi All,
Thank you for this plugin it works like a wonder to build K8S apps for deployment.
My request is to add service account to be added as we use the service account for auth
This is a grab from http://www.devoperandi.com/kubernetes-serviceaccounts/
- serviceAccounts are tied to Namespaces.
- Kubernetes Secrets can be tied to serviceAccounts and thus limited to specific NameSpaces.
- If non are specified, a ‘default’ with relatively limited access will be supplied on NameSpace create.
- Policies can be placed on serviceAccounts to add/remove API access.
- serviceAccounts can be specified during Pod or RC creation.
- In order to change the serviceAccount for a Pod, a restart of the Pod is necessary.
- serviceAccount must be created prior to use in a Pod.
- serviceAccount Tokens are used to allow a serviceAccounts to access a Kubernetes Secret.
- Using ImagePullSecrets for various Container Registries can be done with serviceAccounts
.
Hi All,
Thank you for this plugin it works like a wonder to build K8S apps for deployment.
My request is to add service account to be added as we use the service account for auth
This is a grab from http://www.devoperandi.com/kubernetes-serviceaccounts/
.