You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FIX 3d5acfc
Kubernetes cluster now is able to pull images from private registries, such as created by do/k8s module.
BREAKING 33a1050
Add ability to deploy multiple apps to cluster: project attribute is renamed to app and we add it as label to namespace, deployments, pods, services, and ingresses. E.g. you can select all the pods by label now: kubectl get pods -l app=app_name.
BREAKING ff55503 init_command is renamed to init_container. We no longer set the same environment variables for init containers. Now we need to list them separately. It could be helpful for setting different value for a number of database connections in pool, since digitalocean database cluster limit the number of connections to 22 by default. Also, we can customize the image of init container if it differs from the main one.
7584dd2
It's possible to specify custom labels for deployments, pods, and services.
d3d75ca
We can specify custom service account assigned to pods, so you can bind a role to this service account making it possible for code in pod make queries to kubernetes API.
This discussion was created from the release v0.1.0.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
do/k8s
5432
.Example:
k8s/basic
Kubernetes cluster now is able to pull images from private registries, such as created by do/k8s module.
Add ability to deploy multiple apps to cluster:
project
attribute is renamed toapp
and we add it as label to namespace, deployments, pods, services, and ingresses. E.g. you can select all the pods by label now:kubectl get pods -l app=app_name
.init_command
is renamed toinit_container
. We no longer set the same environment variables for init containers. Now we need to list them separately. It could be helpful for setting different value for a number of database connections in pool, since digitalocean database cluster limit the number of connections to 22 by default. Also, we can customize the image of init container if it differs from the main one.It's possible to specify custom labels for deployments, pods, and services.
We can specify custom service account assigned to pods, so you can bind a role to this service account making it possible for code in pod make queries to kubernetes API.
This discussion was created from the release v0.1.0.
Beta Was this translation helpful? Give feedback.
All reactions