Selectel
Based on openstack, but with additions
Config
clouds:
selcloud:
auth:
auth_url: https://cloud.api.selcloud.ru/identity/v3
username: "username"
password: "password"
project_id: "project id"
user_domain_name: "domain name"
interface: "public"
identity_api_version: 3
volume_api_version: 3
region_name: "ru-9"Managed k8s
export TOKEN=$(openstack token issue -f json | jq -r .id) # issue openstack token
#Take cluster id
curl -s "https://<region>.mks.selcloud.ru/v1/clusters" -H "X-Auth-Token: $TOKEN" | jq
#Issue config
curl "https://<region>.mks.selcloud.ru/v1/clusters/<cluster-id>/kubeconfig" -H "X-Auth-Token: $TOKEN"ToDo
Last updated