With Oracle Cloud Infrastructure OCI, you can easily route traffic between tenancies using DRG and VCN attachments.
Check my blog on Oracle.com
With Oracle Cloud Infrastructure OCI, you can easily route traffic between tenancies using DRG and VCN attachments.
Check my blog on Oracle.com
I have the case of an old server, still running but already past the end of life. I needed to archive vzdump backups and virtual machine images just in case.
OS is too old to install GCP tools like gcloud and gsutil, but there is curl. So I can archive my files.
From my laptop, I can get my access token once the login is confirmed.
gcloud auth application-default login
gcloud auth application-default print-access-token
You received in response the access token to use with curl to upload the file to mybucket in Google Object Storage.
curl -v --upload-file vzdump-qemu-2210-2020_09_27-14_31_04.vma.gz -H "Authorization: Bearer access-token" https://storage.googleapis.com/mybucket/vzdump-qemu-2210-2020_09_27-14_31_04.vma.gz
Replace access-token and mybucket with your values.
This way, I can externalize my backups and even try to provision some old machines as VM. Stay tuned.
You know kubectl is today the Cloud console tool, the new SSH and bash and much more.
I use it every day and as always I only rely on my bash history and CTRL+R to find the last correct use.
For a long time, I read Ahmet Alp Balkan tweets about kubectl plugin but it sounds difficult.
Kubernetes the hard way, right?😁
(if you don't already follow Ahmet on Twitter)
So I was happy with my kubectl history until I assist to Paris Containers Day, especially
Gaëlle Acas & Aurélie Vache's presentation check their video Kubectl plugin in a minute ! (in french)Incroyable, it's super easy to create your kubectl plugin and they demonstrate in 4 steps :