{"id":15699838,"url":"https://github.com/michaelcade/kubecon2023_eu","last_synced_at":"2025-07-14T08:34:22.548Z","repository":{"id":99981264,"uuid":"602621401","full_name":"MichaelCade/KubeCon2023_EU","owner":"MichaelCade","description":null,"archived":false,"fork":false,"pushed_at":"2023-07-09T17:19:55.000Z","size":3243,"stargazers_count":5,"open_issues_count":1,"forks_count":2,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-06-01T00:44:18.623Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MichaelCade.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-02-16T15:44:38.000Z","updated_at":"2025-02-06T23:55:25.000Z","dependencies_parsed_at":"2024-10-24T04:49:31.457Z","dependency_job_id":"ed4e563a-f451-45c8-b4f4-5e37c788dd71","html_url":"https://github.com/MichaelCade/KubeCon2023_EU","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/MichaelCade/KubeCon2023_EU","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MichaelCade%2FKubeCon2023_EU","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MichaelCade%2FKubeCon2023_EU/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MichaelCade%2FKubeCon2023_EU/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MichaelCade%2FKubeCon2023_EU/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MichaelCade","download_url":"https://codeload.github.com/MichaelCade/KubeCon2023_EU/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MichaelCade%2FKubeCon2023_EU/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265262785,"owners_count":23736466,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-03T19:41:52.674Z","updated_at":"2025-07-14T08:34:22.507Z","avatar_url":"https://github.com/MichaelCade.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# KubeCon2023_EU\n\nThis repository is to be used as a walkthrough location for our session at KubeCon 2023 in Amsterdam. \n\n## What went wrong with my persistent data?\n\nLooking for the fundamentals around Kubernetes storage with volumes, especially persistent volumes, persistent volume claims, and storage classes? Then this tutorial is for you. Michael and Le will introduce some fundamental concepts, then dive right into some common pitfalls of setting up persistent data storage in Kubernetes clusters in the format of troubleshooting labs. During these hands-ons labs, folks will be presented with some common errors when setting up pods with persistent volumes or persistent volume claims in a cluster, and will work to identify and resolve these issues. They will be provided with tips and tools on how to navigate these scenarios. Newcomers to K8S will leave with an understanding of basic concepts and tools to effectively work with and troubleshoot persistent data. Additionally, they will also walk away with suggestions around data management for data services, and how to protect their data.\n\nThis session will be a 90-minute workshop \n\nMore details can be found [here.](https://kccnceu2023.sched.com/event/1Hyah/tutorial-what-went-wrong-with-my-persistent-data-le-tran-michael-cade-kasten-by-veeam?iframe=no)\n\nTo follow along we will have 2 labs available all of which can be ran using minikube. \n\n# Pre-Reqs\n- Install Minikube (Shown Below)\n# [Kubernetes Storage (Lab 1)](/lab1-storage.md)\n- Ephemeral Volumes \n- Projected Volumes \n- Persistent Volumes \n    - Persistent Volume Claims\n- Storage Classes \n    - Persistent Volumes\n    - Persistent Volume\n# [Storage Troubleshooting (Lab 2)](/lab2-troubleshooting.md)\n- Deploy Application \n- Troubleshoot\n- Get your high scores \n# [VolumeSnapshots \u0026 Performance (Bonus - Lab 3)](/lab3-snapshots-perf.md)\n- Volume Snapshots \n- Kubestr \n- Install Kanister \n- Object Storage \n- Kanister Blueprints \n- Backup\n- Restore\n\n## Getting Started Instructions\n\n- Minikube installation \n- Minikube version check \n- Start Minikube cluster \n\n### Minikube installation \nFirst we need a local Kubernetes cluster to work on, I have chosen [minikube](https://minikube.sigs.k8s.io/docs/start/)\n\nI am using WSL so I used the following command, other OS instructions can be found on the link above. \n\n```\ncurl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64\nsudo install minikube-linux-amd64 /usr/local/bin/minikube\n```\n\nYou could also use [Arkade](https://github.com/alexellis/arkade) with the following command: \n\n`arkade get minikube`\n\n### Minikube version check \nNow that we have minikube installed check the version with this command: \n`minikube update-check` \n\nThe below is the output and is what we will be using for this lab workshop. \n\n```\n➜ demo minikube update-check\nCurrentVersion: v1.29.0\nLatestVersion: v1.29.0\n```\n\n### Start Minikube cluster\nWe will be using [Docker](https://minikube.sigs.k8s.io/docs/drivers/docker/) as our Container or virtual machine manager for minikube you will see though that this could be a list of other options. such as: Docker, QEMU, Hyperkit, Hyper-V, KVM, Parallels, Podman, VirtualBox, or VMware Fusion/Workstation.\n\nWe will start our cluster with the following command: \n\n`minikube start --addons volumesnapshots,csi-hostpath-driver -p kubecon23`\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmichaelcade%2Fkubecon2023_eu","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmichaelcade%2Fkubecon2023_eu","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmichaelcade%2Fkubecon2023_eu/lists"}