filmov
tv
Managed Kubernetes: why you need it now
Показать описание
There has been a fundamental shift in application development from building on virtual machines to using containers to be able to run your applications efficiently. Containers are great for developers but they are a nightmare to manage. OVHcloud has introduced a Managed Kubernetes service so you can spend your time developing and not managing the containers. Let us explain the advantages of our Managed Kubernetes solutions.
To help you go further and deploy your own cluster below are some resources you might find helpful and the commands used in the demo:
Commands:
# Download the latest binary with curl
# add the executable flag to the file
chmod +x kubectl
# Move the binary to somehwere in the PATH
sudo mv kubectl /usr/local/bin
# Test that we can use the cli
kubectl version
# The default path for kubectl configuration file is ~/.kube/config
# Create the .kube directory
mkdir .kube
# Move the configuration there
mv kubeconfig .kube/config
# Test the kubectl cluster communication
kubectl get nodes
# Download helm from the official website with wget
# uncompress the tarball
# Move the binary to somewhere in the PATH
sudo mv linux-amd64/helm /usr/local/bin
# Add the bitnami repository to helm
# Tell helm to install the "bitnami/wordpress" chart with name "my-first-k8s-wordpress"
helm install my-first-k8s-wordpress bitnami/wordpress --set allowOverrideNone=true
To help you go further and deploy your own cluster below are some resources you might find helpful and the commands used in the demo:
Commands:
# Download the latest binary with curl
# add the executable flag to the file
chmod +x kubectl
# Move the binary to somehwere in the PATH
sudo mv kubectl /usr/local/bin
# Test that we can use the cli
kubectl version
# The default path for kubectl configuration file is ~/.kube/config
# Create the .kube directory
mkdir .kube
# Move the configuration there
mv kubeconfig .kube/config
# Test the kubectl cluster communication
kubectl get nodes
# Download helm from the official website with wget
# uncompress the tarball
# Move the binary to somewhere in the PATH
sudo mv linux-amd64/helm /usr/local/bin
# Add the bitnami repository to helm
# Tell helm to install the "bitnami/wordpress" chart with name "my-first-k8s-wordpress"
helm install my-first-k8s-wordpress bitnami/wordpress --set allowOverrideNone=true
Комментарии