diff --git a/_includes/random-number-generator.html b/_includes/random-number-generator.html index 44f6345..c1fca68 100644 --- a/_includes/random-number-generator.html +++ b/_includes/random-number-generator.html @@ -122,9 +122,9 @@
padding: 1rem 2rem; font-size: 1.1rem; font-weight: 700; - width: 100%; margin-top: 0.5rem; text-align: center; + align-self: center; } .result-card { @@ -209,6 +209,67 @@ } } +/* Dark mode overrides */ +[data-theme="dark"] .form-label { + color: #d1d5db; +} + +[data-theme="dark"] .form-input { + background: #374151; + border-color: #4b5563; + color: #f9fafb; +} + +[data-theme="dark"] .form-input:focus { + background: #1f2937; + border-color: #667eea; +} + +[data-theme="dark"] .form-input:hover { + background: #374151; + border-color: #6b7280; +} + +[data-theme="dark"] .card.result-card { + background: #1f2937; + border-color: #059669; +} + +[data-theme="dark"] .result-header { + color: #34d399; +} + +@media (prefers-color-scheme: dark) { + :root:not([data-theme="light"]) .form-label { + color: #d1d5db; + } + + :root:not([data-theme="light"]) .form-input { + background: #374151; + border-color: #4b5563; + color: #f9fafb; + } + + :root:not([data-theme="light"]) .form-input:focus { + background: #1f2937; + border-color: #667eea; + } + + :root:not([data-theme="light"]) .form-input:hover { + background: #374151; + border-color: #6b7280; + } + + :root:not([data-theme="light"]) .card.result-card { + background: #1f2937; + border-color: #059669; + } + + :root:not([data-theme="light"]) .result-header { + color: #34d399; + } +} + /* Mobile responsive */ @media (max-width: 640px) { .random-generator-container { diff --git a/_layouts/default.html b/_layouts/default.html index 735b7be..05d392f 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -2,6 +2,14 @@ + +Please check your input values. Make sure minimum < maximum and number of results ≤ range size.
'; resultCard.style.display = 'block'; resultCard.style.border = '2px solid #ef4444'; - resultCard.style.background = 'linear-gradient(135deg, #fef2f2 0%, #fef7f7 100%)'; + resultCard.style.background = isDark ? '#1f2937' : 'linear-gradient(135deg, #fef2f2 0%, #fef7f7 100%)'; return; } @@ -34,9 +39,9 @@ function generateRandomNumbers() { // Show result card immediately resultHeader.innerText = '🎉 Your lucky numbers are:'; - resultHeader.style.color = '#065f46'; + resultHeader.style.color = isDark ? '#34d399' : '#065f46'; resultCard.style.border = '2px solid #10b981'; - resultCard.style.background = 'linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%)'; + resultCard.style.background = isDark ? '#1f2937' : 'linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%)'; resultCard.style.display = 'block'; // Smooth scroll to results diff --git a/assets/style.scss b/assets/style.scss index 2893aa7..0bab5d8 100644 --- a/assets/style.scss +++ b/assets/style.scss @@ -237,6 +237,42 @@ a:hover { font-size: 1rem; } +/* Theme toggle button */ +.theme-toggle-btn { + background: rgba(255, 255, 255, 0.15); + border: 1px solid rgba(255, 255, 255, 0.35); + border-radius: 0.5rem; + color: rgba(255, 255, 255, 0.9); + cursor: pointer; + padding: 0.5rem; + display: flex; + align-items: center; + justify-content: center; + line-height: 1; + transition: all 0.3s ease; + + svg { + flex-shrink: 0; + display: block; + } + + &:hover { + color: white; + background: rgba(255, 255, 255, 0.25); + border-color: rgba(255, 255, 255, 0.55); + } +} + +@media (max-width: 1024px) { + .theme-toggle-btn { + width: auto; + padding: 0.75rem; + border: 1px solid rgba(255, 255, 255, 0.3); + align-self: center; + margin: 0 auto; + } +} + /* Mobile Menu */ .mobile-menu-btn { display: flex; @@ -1637,3 +1673,329 @@ pre code { background: none; padding: 0; } + +/* ============================================== + DARK MODE + Applied via [data-theme="dark"] on + (set by the toggle button / JS) + and via @media (prefers-color-scheme: dark) + when no manual override is stored. + ============================================== */ + +@mixin dark-theme { + color-scheme: dark; + + body { + color: #e5e7eb; + background-color: #111827; + } + + h1, h2, h3, h4, h5, h6 { + color: #f9fafb; + } + + a { + color: #818cf8; + } + + a:hover { + color: #a5b4fc; + } + + // Cards + .card { + background: #1f2937; + border-color: #374151; + } + + .card-header { + border-bottom-color: #374151; + } + + .card-header h2, + .card-header h3 { + color: #818cf8; + } + + // Statistics + .stat-section { + background: #1f2937; + border-color: #374151; + } + + .chart-title { + color: #f9fafb; + } + + .stats-table th, + .stats-table td { + border-bottom-color: #374151; + } + + .stats-table th { + background-color: #374151; + color: #f9fafb; + } + + .stats-table tbody tr:hover { + background-color: #374151; + } + + .number-cell { + color: #818cf8; + } + + // Events + .event-card { + background: #1f2937; + border-color: #374151; + } + + .event-title a { + color: #f9fafb; + } + + .event-title a:hover { + color: #818cf8; + } + + .event-meta { + color: #9ca3af; + } + + .talk-item { + border-bottom-color: #374151; + } + + .talk-title { + color: #f3f4f6; + } + + .talk-speaker { + color: #9ca3af; + } + + .talk-speaker-name { + color: #d1d5db; + } + + .more-talks { + background: #374151; + } + + .more-talks .talk-title { + color: #9ca3af; + } + + // Footer + .site-footer { + background: #1f2937; + border-top-color: #374151; + } + + .footer-text { + color: #9ca3af; + } + + .footer-social a { + background: rgba(255, 255, 255, 0.1); + border-color: rgba(255, 255, 255, 0.15); + } + + .footer-social a:hover { + background: rgba(255, 255, 255, 0.2); + border-color: rgba(255, 255, 255, 0.25); + } + + // Code + code, + pre, + .highlight { + background: #1f2937; + color: #e5e7eb; + } + + // Team + .member-name { + color: #f9fafb; + } + + .member-bio { + color: #d1d5db; + } + + // Hero + .hero-content h1 { + color: #f9fafb; + } + + // Utility / boxes + .highlight-box, + .cta-box { + background: #1f2937; + } + + .highlight-box h4, + .cta-box h4 { + color: #818cf8; + } + + .small-text { + color: #9ca3af; + } + + // Borders in lists / schedules + .requirements-list li { + border-bottom-color: #374151; + } + + .requirements-list strong { + color: #818cf8; + } + + .schedule .schedule-item { + border-bottom-color: #374151; + } + + .schedule .time { + color: #818cf8; + } + + .meeting-details .detail-item { + border-bottom-color: #374151; + } + + .meeting-details strong { + color: #818cf8; + } + + .tip-item h4 { + color: #818cf8; + } + + .value-item h4 { + color: #818cf8; + } + + // Sponsoring packages + .package-card { + border-color: #374151; + } + + .package-card.featured { + border-color: #818cf8; + } + + .package-header { + border-bottom-color: #374151; + } + + .package-footer { + border-top-color: #374151; + } + + .package-price { + color: #818cf8; + } + + .option { + background: #374151; + } + + .option-divider { + color: #9ca3af; + } + + .benefits-list li::before { + color: #818cf8; + } + + // Alerts / notices + .fallback-note { + background: rgba(14, 165, 233, 0.1); + color: #7dd3fc; + border-left-color: #0ea5e9; + } + + .alert-info { + background-color: rgba(129, 140, 248, 0.15); + border-left-color: #818cf8; + color: #818cf8; + } + + .alert-warning { + background-color: rgba(245, 158, 11, 0.15); + color: #fcd34d; + border-left-color: #f59e0b; + } + + // Carousel + .carousel-btn { + background: rgba(31, 41, 55, 0.95); + box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4); + } + + .carousel-btn svg { + color: #d1d5db; + } + + .carousel-btn:hover { + background: rgba(55, 65, 81, 1); + box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5); + } + + .carousel-btn:hover svg { + color: #818cf8; + } + + .carousel-btn:disabled:hover { + background: rgba(31, 41, 55, 0.95); + } + + .carousel-btn:disabled:hover svg { + color: #d1d5db; + } + + .carousel-indicator { + background: rgba(255, 255, 255, 0.3); + } + + .carousel-indicator:hover:not(.active) { + background: rgba(255, 255, 255, 0.5); + } + + // Navigation - keep nav links white; header gradient does not change in dark mode + .nav-link { + color: rgba(255, 255, 255, 0.9); + + &:hover { + color: white; + } + + &.current, + &.nav-cta { + color: white; + } + } + + // Meta links + .meta-link { + color: #818cf8; + } + + .meta-link:hover { + color: #a5b4fc; + } +} + +/* --- Apply via data attribute (manual toggle) --- */ +[data-theme="dark"] { + @include dark-theme; +} + +/* --- Apply via OS preference (no manual override set) --- */ +@media (prefers-color-scheme: dark) { + :root:not([data-theme="light"]) { + @include dark-theme; + } +} diff --git a/calendar.ics b/calendar.ics index bc65f01..e8473f0 100644 --- a/calendar.ics +++ b/calendar.ics @@ -1,575 +1,575 @@ -BEGIN:VCALENDAR -VERSION:2.0 -PRODID:-//Cloud Native Linz Calendar//EN -X-WR-CALDESC:Meetup events for the Cloud Native Linz community -NAME:Cloud Native Linz Events -X-WR-CALNAME:Cloud Native Linz Events -BEGIN:VEVENT -SUMMARY:1. Cloud Native Computing Linz Meetup - CNCF Linz -DTSTART;TZID=Europe/Berlin:20200929T180000 -DTEND;TZID=Europe/Berlin:20200929T210000 -UID:c4ca4238a0b923820dcc509a6f75849b@cncflinz.at -DESCRIPTION:Host: online\nTalks:\n- Digital Transformation (from on-premis - es to the cloud) by Donovan Brown\n- Serverless on the AWS Cloud\, Challen - ges Beyond the Toy Problems by Matthias Steinbauer\n\nEvent link (RSVP): h - ttps://www.meetup.com/cloud-native-computing-linz/events/273245544/ -LOCATION:Online Event -URL:https://www.meetup.com/cloud-native-computing-linz/events/273245544/ -END:VEVENT -BEGIN:VEVENT -SUMMARY:2. Cloud Native Computing Linz Meetup - CNCF Linz -DTSTART;TZID=Europe/Berlin:20201027T180000 -DTEND;TZID=Europe/Berlin:20201027T210000 -UID:c81e728d9d4c2f636f067f89cc14862c@cncflinz.at -DESCRIPTION:Host: online\nTalks:\n- The challenges of exposing and connect - ing microservices by Denis Jannot\n- Custom Autoscaling with Prometheus\, - Grafana\, and a little bit of code by János Pásztor\n\nEvent link (RSVP) - : https://www.meetup.com/cloud-native-computing-linz/events/273726815/ -LOCATION:Online Event -URL:https://www.meetup.com/cloud-native-computing-linz/events/273726815/ -END:VEVENT -BEGIN:VEVENT -SUMMARY:3. Cloud Native Computing Linz Meetup - CNCF Linz -DTSTART;TZID=Europe/Berlin:20201124T180000 -DTEND;TZID=Europe/Berlin:20201124T210000 -UID:eccbc87e4b5ce2fe28308fd9f2a7baf3@cncflinz.at -DESCRIPTION:Host: online\nTalks:\n- KubeOne for Beginners by Malte Menkhof - f\n- Kubernetes certifications: How to prepare and get it done by Juliano - Costa & Yuri Oliveira\n\nEvent link (RSVP): https://www.meetup.com/cloud-n - ative-computing-linz/events/274417589/ -LOCATION:Online Event -URL:https://www.meetup.com/cloud-native-computing-linz/events/274417589/ -END:VEVENT -BEGIN:VEVENT -SUMMARY:4. Cloud Native Computing Linz Meetup - CNCF Linz -DTSTART;TZID=Europe/Berlin:20210126T180000 -DTEND;TZID=Europe/Berlin:20210126T210000 -UID:a87ff679a2f3e71d9181a67b7542122c@cncflinz.at -DESCRIPTION:Host: online\nTalks:\n- Remote debugging challenges in Kuberne - tes by Oded Keret\n- When the destination is not what you expect to be or - MITM in k8s by Dimitrij Klesev\n\nEvent link (RSVP): https://www.meetup.co - m/cloud-native-computing-linz/events/275600776/ -LOCATION:Online Event -URL:https://www.meetup.com/cloud-native-computing-linz/events/275600776/ -END:VEVENT -BEGIN:VEVENT -SUMMARY:5. Cloud Native Computing Linz Meetup - CNCF Linz -DTSTART;TZID=Europe/Berlin:20210223T180000 -DTEND;TZID=Europe/Berlin:20210223T210000 -UID:e4da3b7fbbce2345d7772b0674a318d5@cncflinz.at -DESCRIPTION:Host: online\nTalks:\n- Observability & Declarative Hypothesis - in Chaos Engineering by Karthik S\n- Can I write a platform in the cloud - as a single person? by Michael Aufreiter\n\nEvent link (RSVP): https://www - .meetup.com/cloud-native-computing-linz/events/276236712/ -LOCATION:Online Event -URL:https://www.meetup.com/cloud-native-computing-linz/events/276236712/ -END:VEVENT -BEGIN:VEVENT -SUMMARY:6. Cloud Native Computing Linz Meetup - CNCF Linz -DTSTART;TZID=Europe/Berlin:20210330T180000 -DTEND;TZID=Europe/Berlin:20210330T210000 -UID:1679091c5a880faf6fb5e6087eb1b2dc@cncflinz.at -DESCRIPTION:Host: online\nTalks:\n- Continuous Security - Building Securit - y into your Pipelines by Matt Jarvis\n- Cloud Security Beyond Technology b - y Rainer Stropek\n\nEvent link (RSVP): https://www.meetup.com/cloud-native - -computing-linz/events/276718585/ -LOCATION:Online Event -URL:https://www.meetup.com/cloud-native-computing-linz/events/276718585/ -END:VEVENT -BEGIN:VEVENT -SUMMARY:7. Cloud Native Computing Linz Meetup - CNCF Linz -DTSTART;TZID=Europe/Berlin:20210427T180000 -DTEND;TZID=Europe/Berlin:20210427T210000 -UID:8f14e45fceea167a5a36dedd4bea2543@cncflinz.at -DESCRIPTION:Host: online\nTalks:\n- All you need to know about OpenTelemet - ry by Juraci Paixão Kröhling\n\nEvent link (RSVP): https://www.meetup.co - m/cloud-native-computing-linz/events/277569639/ -LOCATION:Online Event -URL:https://www.meetup.com/cloud-native-computing-linz/events/277569639/ -END:VEVENT -BEGIN:VEVENT -SUMMARY:8. Cloud Native Computing Linz Meetup - CNCF Linz -DTSTART;TZID=Europe/Berlin:20210525T180000 -DTEND;TZID=Europe/Berlin:20210525T210000 -UID:c9f0f895fb98ab9159f51fd0297e236d@cncflinz.at -DESCRIPTION:Host: online\nTalks:\n- Cloud-Native Storage: What it can and - can't (yet) do by Moritz Wanzenböck\n\nEvent link (RSVP): https://www.mee - tup.com/cloud-native-computing-linz/events/278104169/ -LOCATION:Online Event -URL:https://www.meetup.com/cloud-native-computing-linz/events/278104169/ -END:VEVENT -BEGIN:VEVENT -SUMMARY:9. Cloud Native Computing Linz Meetup - CNCF Linz -DTSTART;TZID=Europe/Berlin:20210629T180000 -DTEND;TZID=Europe/Berlin:20210629T210000 -UID:45c48cce2e2d7fbdea1afc51c7c6ad26@cncflinz.at -DESCRIPTION:Host: online\nTalks:\n- Service Mesh Principles: Observability - through Telemetry with Linkerd by Charles Pretzer\n\nEvent link (RSVP): h - ttps://www.meetup.com/cloud-native-computing-linz/events/278914758/ -LOCATION:Online Event -URL:https://www.meetup.com/cloud-native-computing-linz/events/278914758/ -END:VEVENT -BEGIN:VEVENT -SUMMARY:10. Cloud Native Computing Linz Meetup - CNCF Linz -DTSTART;TZID=Europe/Berlin:20210928T180000 -DTEND;TZID=Europe/Berlin:20210928T210000 -UID:d3d9446802a44259755d38e6d163e820@cncflinz.at -DESCRIPTION:Host: online\nTalks:\n- Automatically optimize cloud-native sy - stems for fun and profit by Lars Wolff\n\nEvent link (RSVP): https://www.m - eetup.com/cloud-native-computing-linz/events/280749046/ -LOCATION:Online Event -URL:https://www.meetup.com/cloud-native-computing-linz/events/280749046/ -END:VEVENT -BEGIN:VEVENT -SUMMARY:11. IN PERSON - Cloud Native Computing Linz Meetup - CNCF Linz -DTSTART;TZID=Europe/Berlin:20211019T180000 -DTEND;TZID=Europe/Berlin:20211019T210000 -UID:6512bd43d9caa6e02c990b0a82652dca@cncflinz.at -DESCRIPTION:Host: Dynatrace\nTalks:\n- The 1001 serverless options of Micr - osoft Azure by Philipp Weckerle\n- How OpenTelemetry is currently used at - my company by Juliano Costa\n\nEvent link (RSVP): https://www.meetup.com/c - loud-native-computing-linz/events/281064988/ -LOCATION:Dynatrace -URL:https://www.meetup.com/cloud-native-computing-linz/events/281064988/ -END:VEVENT -BEGIN:VEVENT -SUMMARY:12. Cloud Native Computing Linz Meetup - CNCF Linz -DTSTART;TZID=Europe/Berlin:20220223T180000 -DTEND;TZID=Europe/Berlin:20220223T210000 -UID:c20ad4d76fe97759aa27a0c99bff6710@cncflinz.at -DESCRIPTION:Host: online\nTalks:\n- A Tour of Operator-SDK by Alexandre Me - nezes & Yuri Oliveira Sá\n\nEvent link (RSVP): https://www.meetup.com/clo - ud-native-computing-linz/events/283691539/ -LOCATION:Online Event -URL:https://www.meetup.com/cloud-native-computing-linz/events/283691539/ -END:VEVENT -BEGIN:VEVENT -SUMMARY:13. Cloud Native Computing Linz Meetup (joint meetup with eJUG Lin - z) - CNCF Linz -DTSTART;TZID=Europe/Berlin:20220330T180000 -DTEND;TZID=Europe/Berlin:20220330T210000 -UID:c51ce410c124a10e0db5e4b97fc2af39@cncflinz.at -DESCRIPTION:Host: smec\nTalks:\n- Java on Azure by Ed Burns\n\nEvent link - (RSVP): https://www.meetup.com/cloud-native-computing-linz/events/28466221 - 9/ -LOCATION:smec -URL:https://www.meetup.com/cloud-native-computing-linz/events/284662219/ -END:VEVENT -BEGIN:VEVENT -SUMMARY:14. Cloud Native Computing Linz Meetup - CNCF Linz -DTSTART;TZID=Europe/Berlin:20220419T180000 -DTEND;TZID=Europe/Berlin:20220419T210000 -UID:aab3238922bcc25a6f606eb525ffdc56@cncflinz.at -DESCRIPTION:Host: hello again\nTalks:\n- The art of scaling without scalin - g your DevOps-Team by Michael Schöndorfer\n- The 7 deadly sins in Kuberne - tes by Hubert Ströbitzer\n\nEvent link (RSVP): https://www.meetup.com/clo - ud-native-computing-linz/events/284847987/ -LOCATION:hello again -URL:https://www.meetup.com/cloud-native-computing-linz/events/284847987/ -END:VEVENT -BEGIN:VEVENT -SUMMARY:15. Cloud Native Computing Linz Meetup - CNCF Linz -DTSTART;TZID=Europe/Berlin:20220531T180000 -DTEND;TZID=Europe/Berlin:20220531T210000 -UID:9bf31c7ff062936a96d3c8bd1f8f2ff3@cncflinz.at -DESCRIPTION:Host: G+D Netcetera\nTalks:\n- How deploying feature branches - opened the door to more scalability by Markus Adelsberger\n- From Command - Line to GitOps - how we transformed our infrastructure by Thomas Einwaller - \n\nEvent link (RSVP): https://www.meetup.com/cloud-native-computing-linz/ - events/285775843/ -LOCATION:G+D Netcetera -URL:https://www.meetup.com/cloud-native-computing-linz/events/285775843/ -END:VEVENT -BEGIN:VEVENT -SUMMARY:16. Cloud Native Computing Linz Meetup - CNCF Linz -DTSTART;TZID=Europe/Berlin:20220628T180000 -DTEND;TZID=Europe/Berlin:20220628T210000 -UID:c74d97b01eae257e44aa9d5bade97baf@cncflinz.at -DESCRIPTION:Host: Dynatrace\nTalks:\n- Policy as Code - an introduction to - Open Policy Agent by Anders Eknert\n- ClickOps over GitOps by Laszlo Foga - s\n\nEvent link (RSVP): https://www.meetup.com/cloud-native-computing-linz - /events/286504906/ -LOCATION:Dynatrace -URL:https://www.meetup.com/cloud-native-computing-linz/events/286504906/ -END:VEVENT -BEGIN:VEVENT -SUMMARY:17. Cloud Native Computing Linz Meetup - CNCF Linz -DTSTART;TZID=Europe/Berlin:20221018T180000 -DTEND;TZID=Europe/Berlin:20221018T210000 -UID:70efdf2ec9b086079795c442636b55fb@cncflinz.at -DESCRIPTION:Host: Cloudflight\nTalks:\n- Kubernetes\, docker\, cri-o\, con - tainerd\, OCI\, runC\, container - what they are and how they fit together - by Martin Strigl\n- Kong's Service Connectivity Platform by Marco Marquez - \n\nEvent link (RSVP): https://community.cncf.io/events/details/cncf-linz- - presents-17-cloud-native-computing-linz-meetup-october-18-2022/ -LOCATION:Cloudflight -URL:https://community.cncf.io/events/details/cncf-linz-presents-17-cloud-n - ative-computing-linz-meetup-october-18-2022/ -END:VEVENT -BEGIN:VEVENT -SUMMARY:18. Cloud Native Computing Linz Meetup - CNCF Linz -DTSTART;TZID=Europe/Berlin:20221122T180000 -DTEND;TZID=Europe/Berlin:20221122T210000 -UID:6f4922f45568161a8cdf4ad2299f6d23@cncflinz.at -DESCRIPTION:Host: Tractive\nTalks:\n- How to build fault resistant service - s with infrastructure automation? by Stefan Burgholzer\n- Secure DevOps En - vironment by Christian Köberl\n\nEvent link (RSVP): https://community.cnc - f.io/events/details/cncf-linz-presents-18-cloud-native-computing-linz-meet - up-november-22-2022/ -LOCATION:Tractive -URL:https://community.cncf.io/events/details/cncf-linz-presents-18-cloud-n - ative-computing-linz-meetup-november-22-2022/ -END:VEVENT -BEGIN:VEVENT -SUMMARY:19. Cloud Native Computing Linz Meetup - CNCF Linz -DTSTART;TZID=Europe/Berlin:20230117T180000 -DTEND;TZID=Europe/Berlin:20230117T210000 -UID:1f0e3dad99908345f7439f8ffabdffc4@cncflinz.at -DESCRIPTION:Host: Startrampe\nTalks:\n- Instrumenting Tyk API Gateway with - OpenTelemetry by Sonja Chevre\n- Don't deploy into the DARK! DORA Metrics - : automatically\, for all your k8s workloads! by Andreas Grabner\n\nEvent - link (RSVP): https://community.cncf.io/events/details/cncf-linz-presents-c - loud-native-linz-jan-17-k8s-dora-metrics-and-tyk-gateway-with-opentelemetr - y/ -LOCATION:Startrampe -URL:https://community.cncf.io/events/details/cncf-linz-presents-cloud-nati - ve-linz-jan-17-k8s-dora-metrics-and-tyk-gateway-with-opentelemetry/ -END:VEVENT -BEGIN:VEVENT -SUMMARY:Kubernetes Alternatives - CNCF Linz -DTSTART;TZID=Europe/Berlin:20230221T180000 -DTEND;TZID=Europe/Berlin:20230221T210000 -UID:98f13708210194c475687be6106a3b84@cncflinz.at -DESCRIPTION:Host: Usersnap\nTalks:\n- Serverless container workloads beyon - d K8s by Martin Sereinig\n- Kubernetes Alternatives by Martin Ahrer\n\nEve - nt link (RSVP): https://community.cncf.io/events/details/cncf-linz-present - s-cloud-native-linz-feb-21-kubernetes-alternatives/ -LOCATION:Usersnap -URL:https://community.cncf.io/events/details/cncf-linz-presents-cloud-nati - ve-linz-feb-21-kubernetes-alternatives/ -END:VEVENT -BEGIN:VEVENT -SUMMARY:Crossplane Usecases - CNCF Linz -DTSTART;TZID=Europe/Berlin:20230328T180000 -DTEND;TZID=Europe/Berlin:20230328T210000 -UID:3c59dc048e8850243be8079a5c74d079@cncflinz.at -DESCRIPTION:Host: Dynatrace\nTalks:\n- Crossplane & GitOps: A perfect matc - h? by Katharina Sick\n- Kubernetes as a universal controlplane: An Introdu - ction into Crossplane by David Hondl\n\nEvent link (RSVP): https://communi - ty.cncf.io/events/details/cncf-linz-presents-cloud-native-linz-march-28-cr - ossplane-use-cases/ -LOCATION:Dynatrace -URL:https://community.cncf.io/events/details/cncf-linz-presents-cloud-nati - ve-linz-march-28-crossplane-use-cases/ -END:VEVENT -BEGIN:VEVENT -SUMMARY:Hagenberg Edition - CNCF Linz -DTSTART;TZID=Europe/Berlin:20230418T180000 -DTEND;TZID=Europe/Berlin:20230418T210000 -UID:b6d767d2f8ed5d21a44b0e5886680cb9@cncflinz.at -DESCRIPTION:Host: Porsche Informatik\nTalks:\n- Let's Turn Off the Databas - e - Chaos Engineering @ Porsche Informatik by Carolin Schuntermann\n- Supe - rcharge Your Coding with GitHub Copilot and Actions: The AI-Powered Produc - tivity Duo by Jürgen Etzlstorfer\n\nEvent link (RSVP): https://community. - cncf.io/events/details/cncf-linz-presents-cloud-native-linz-april-18-hagen - berg-edition/ -LOCATION:Porsche Informatik -URL:https://community.cncf.io/events/details/cncf-linz-presents-cloud-nati - ve-linz-april-18-hagenberg-edition/ -END:VEVENT -BEGIN:VEVENT -SUMMARY:CertOps and K8sGPT - CNCF Linz -DTSTART;TZID=Europe/Berlin:20230530T180000 -DTEND;TZID=Europe/Berlin:20230530T210000 -UID:37693cfc748049e45d87b8c7d8b9aacd@cncflinz.at -DESCRIPTION:Host: Cloudflight\nTalks:\n- CertOps: Certificate Lifecycle Ma - nagement done Cloud Native by Martin Strigl\n- Leveraging AI to Troublesho - ot Kubernetes with K8sGPT by Thomas Schuetz\n\nEvent link (RSVP): https:// - community.cncf.io/events/details/cncf-linz-presents-cloud-native-linz-may- - 30-troubleshooting-with-k8sgpt/ -LOCATION:Cloudflight -URL:https://community.cncf.io/events/details/cncf-linz-presents-cloud-nati - ve-linz-may-30-troubleshooting-with-k8sgpt/ -END:VEVENT -BEGIN:VEVENT -SUMMARY:GitOps & Terraform and a Guide to OpenTelemetry - CNCF Linz -DTSTART;TZID=Europe/Berlin:20230627T180000 -DTEND;TZID=Europe/Berlin:20230627T210000 -UID:1ff1de774005f8da13f42943881c655f@cncflinz.at -DESCRIPTION:Host: Runtastic\nTalks:\n- GitOps and Terraform by Alexander L - ackner\n- Distributed Tracing and OpenTelemetry by Daniel Khan\n\nEvent li - nk (RSVP): https://community.cncf.io/events/details/cncf-linz-presents-clo - ud-native-linz-june-27-gitops-terraform-and-a-guide-to-opentelemetry/ -LOCATION:Runtastic -URL:https://community.cncf.io/events/details/cncf-linz-presents-cloud-nati - ve-linz-june-27-gitops-terraform-and-a-guide-to-opentelemetry/ -END:VEVENT -BEGIN:VEVENT -SUMMARY:Migration to Cloud Native & The Power of Operators - CNCF Linz -DTSTART;TZID=Europe/Berlin:20230919T180000 -DTEND;TZID=Europe/Berlin:20230919T210000 -UID:8e296a067a37563370ded05f5a3bf3ec@cncflinz.at -DESCRIPTION:Host: G+D Netcetera\nTalks:\n- Scaling Observability - Dynatra - ce Operator by Christoph Müllner\n- Migration of on-prem payment systems - to a Cloud Native Environments by Markus Adelsberger & Georg Mayrhauser\n\ - nEvent link (RSVP): https://community.cncf.io/events/details/cncf-linz-pre - sents-cloud-native-linz-sept-19-migration-to-cloud-native-amp-the-power-of - -operators/ -LOCATION:G+D Netcetera -URL:https://community.cncf.io/events/details/cncf-linz-presents-cloud-nati - ve-linz-sept-19-migration-to-cloud-native-amp-the-power-of-operators/ -END:VEVENT -BEGIN:VEVENT -SUMMARY:Testing K8s Operators & OpenTelemetry for Logs - CNCF Linz -DTSTART;TZID=Europe/Berlin:20231018T180000 -DTEND;TZID=Europe/Berlin:20231018T210000 -UID:4e732ced3463d06de0ca9a15b6153677@cncflinz.at -DESCRIPTION:Host: eww IT and TEL\nTalks:\n- Test and evolve your Kubernete - s Operators by Riccardo Capraro\n- OpenTelemetry for Logging by Philipp Kr - enn\n\nEvent link (RSVP): https://community.cncf.io/events/details/cncf-li - nz-presents-cloud-native-linz-october-18-testing-k8s-operators-amp-opentel - emetry-for-logs/ -LOCATION:eww IT and TEL -URL:https://community.cncf.io/events/details/cncf-linz-presents-cloud-nati - ve-linz-october-18-testing-k8s-operators-amp-opentelemetry-for-logs/ -END:VEVENT -BEGIN:VEVENT -SUMMARY:GitOps and Testing Cloud Environments - CNCF Linz -DTSTART;TZID=Europe/Berlin:20231121T180000 -DTEND;TZID=Europe/Berlin:20231121T210000 -UID:02e74f10e0327ad868d138f2b4fdd6f0@cncflinz.at -DESCRIPTION:Host: MIC\nTalks:\n- Automating Legacy System Management with - GitOps: A Journey from On-Premises to Kubernetes by Michael Skledar\n- Tam - ing and Testing the Cloud Environment from localhost to cncf.io by Anca Gh - enade\n\nEvent link (RSVP): https://community.cncf.io/events/details/cncf- - linz-presents-cloud-native-linz-november-21-gitops-and-testing-cloud-envir - onments/ -LOCATION:MIC -URL:https://community.cncf.io/events/details/cncf-linz-presents-cloud-nati - ve-linz-november-21-gitops-and-testing-cloud-environments/ -END:VEVENT -BEGIN:VEVENT -SUMMARY:Cloud Adventure and Cloud Native Sustainability - CNCF Linz -DTSTART;TZID=Europe/Berlin:20240124T180000 -DTEND;TZID=Europe/Berlin:20240124T210000 -UID:33e75ff09dd601bbe69f351039152189@cncflinz.at -DESCRIPTION:Host: karriere.at\nTalks:\n- Cloud Adventure by Georg Buchgehe - r\n- Green Software by Erik Auer\n\nEvent link (RSVP): https://community.c - ncf.io/events/details/cncf-linz-presents-cloud-native-linz-january-24-clou - d-adventure-and-cloud-native-sustainability/ -LOCATION:karriere.at -URL:https://community.cncf.io/events/details/cncf-linz-presents-cloud-nati - ve-linz-january-24-cloud-adventure-and-cloud-native-sustainability/ -END:VEVENT -BEGIN:VEVENT -SUMMARY:Access Control and Platforms with Devs in Mind - CNCF Linz -DTSTART;TZID=Europe/Berlin:20240227T180000 -DTEND;TZID=Europe/Berlin:20240227T210000 -UID:6ea9ab1baa0efb9e19094440c317e21b@cncflinz.at -DESCRIPTION:Host: Gepardec\nTalks:\n- Pathways\, Not Pitfalls: Building Pl - atforms With Developers in Mind by Katharina Sick\n- An Open-Source approa - ch to Multi-tenant Label-based Access control by Constantin Winkler\n\nEve - nt link (RSVP): https://community.cncf.io/events/details/cncf-linz-present - s-cloud-native-linz-february-27-access-control-and-platforms-with-devs-in- - mind/ -LOCATION:Gepardec -URL:https://community.cncf.io/events/details/cncf-linz-presents-cloud-nati - ve-linz-february-27-access-control-and-platforms-with-devs-in-mind/ -END:VEVENT -BEGIN:VEVENT -SUMMARY:K8s Journey and a Multi-Layer K8s Security System - CNCF Linz -DTSTART;TZID=Europe/Berlin:20240326T180000 -DTEND;TZID=Europe/Berlin:20240326T210000 -UID:34173cb38f07f89ddbebc2ac9128303f@cncflinz.at -DESCRIPTION:Host: Runtastic\nTalks:\n- A Tale of ROSEs and Containers: Our - Kubernetes Journey by Alexander Lackner & Armin Deliomini\n- Implementing - a Multi-Layer Kubernetes Security System with SUSE NeuVector by Daniel Dr - ack\n\nEvent link (RSVP): https://community.cncf.io/events/details/cncf-li - nz-presents-cloud-native-linz-march-26-kubernetes-journey-and-a-multi-laye - r-kubernetes-security-system/ -LOCATION:Runtastic -URL:https://community.cncf.io/events/details/cncf-linz-presents-cloud-nati - ve-linz-march-26-kubernetes-journey-and-a-multi-layer-kubernetes-security- - system/ -END:VEVENT -BEGIN:VEVENT -SUMMARY:Secure K8s Deployment and API Management in Azure - CNCF Linz -DTSTART;TZID=Europe/Berlin:20240423T180000 -DTEND;TZID=Europe/Berlin:20240423T210000 -UID:c16a5320fa475530d9583c34fd356ef5@cncflinz.at -DESCRIPTION:Host: Public Cloud Group\nTalks:\n- How to securely deploy Kub - ernetes on Azure by Marcel Tober & Andreas Wimmersberger\n- Transforming d - iverse system landscapes into sustainable API products with Azure API Mana - gement by Tobias Berei\n\nEvent link (RSVP): https://www.meetup.com/cloud- - native-linz/events/298076702/ -LOCATION:Public Cloud Group -URL:https://www.meetup.com/cloud-native-linz/events/298076702/ -END:VEVENT -BEGIN:VEVENT -SUMMARY:Inspecting Running Containers & Observability on the Edge - CNCF L - inz -DTSTART;TZID=Europe/Berlin:20240625T180000 -DTEND;TZID=Europe/Berlin:20240625T210000 -UID:6364d3f0f495b6ab9dcf8d3b5c6e0b01@cncflinz.at -DESCRIPTION:Host: Cloudflight\nTalks:\n- Inspecting running containers by - Martin Strigl\n- Observability at the Edge: Envoy Distributed Tracing with - OpenTelemetry by João Grassi\n\nEvent link (RSVP): https://www.meetup.co - m/cloud-native-linz/events/300982876/ -LOCATION:Cloudflight -URL:https://www.meetup.com/cloud-native-linz/events/300982876/ -END:VEVENT -BEGIN:VEVENT -SUMMARY:OpenTelemetry Errors - CNCF Linz -DTSTART;TZID=Europe/Berlin:20240918T180000 -DTEND;TZID=Europe/Berlin:20240918T210000 -UID:182be0c5cdcd5072bb1864cdee4d3d6e@cncflinz.at -DESCRIPTION:Host: online\nTalks:\n- Dude\, Where's My Error? How OTel Reco - rds Errors\, and Why it Does Like That by Adriana Villela & Reese Lee\n\nE - vent link (RSVP): https://www.meetup.com/cloud-native-linz/events/30257076 - 1/ -LOCATION:Online Event -URL:https://www.meetup.com/cloud-native-linz/events/302570761/ -END:VEVENT -BEGIN:VEVENT -SUMMARY:Beyond k8s and OpenSource Metrics - CNCF Linz -DTSTART;TZID=Europe/Berlin:20241021T180000 -DTEND;TZID=Europe/Berlin:20241021T210000 -UID:e369853df766fa44e1ed0ff613f563bd@cncflinz.at -DESCRIPTION:Host: Dynatrace\nTalks:\n- Open-Source Metrics Primer by Georg - Pirklbauer\n- Beyond Kubernetes: Integrating Backstage for a Seamless Dev - eloper Experience by Philipp Bergsmann\n\nEvent link (RSVP): https://www.m - eetup.com/cloud-native-linz/events/303406885/ -LOCATION:Dynatrace -URL:https://www.meetup.com/cloud-native-linz/events/303406885/ -END:VEVENT -BEGIN:VEVENT -SUMMARY:Cloud-Native Harmony & Backstage Techdocs - CNCF Linz -DTSTART;TZID=Europe/Berlin:20241119T180000 -DTEND;TZID=Europe/Berlin:20241119T210000 -UID:1c383cd30b7c298ab50293adfecb7b18@cncflinz.at -DESCRIPTION:Host: cloudxcelerate\nTalks:\n- From IT Ops to Cloud-Native Ha - rmony by Alexander Höllwart & Michael “Obi” Obernberger\n- Backstage - Techdocs by Sebastian Poxhofer\n\nEvent link (RSVP): https://www.meetup.co - m/cloud-native-computing-linz/events/302568919/ -LOCATION:cloudxcelerate -URL:https://www.meetup.com/cloud-native-computing-linz/events/302568919/ -END:VEVENT -BEGIN:VEVENT -SUMMARY:Containerized Builds & Beesting - CNCF Linz -DTSTART;TZID=Europe/Berlin:20250115T180000 -DTEND;TZID=Europe/Berlin:20250115T210000 -UID:19ca14e7ea6328a42e0eb13d585e4c22@cncflinz.at -DESCRIPTION:Host: Public Cloud Group\nTalks:\n- A closer look at Docker Bu - ildKit and Buildx by Sophia Zehethofer\n- Beesting Can't touch this by Pat - rick Pichler\n\nEvent link (RSVP): https://www.meetup.com/cloud-native-lin - z/events/304003701/ -LOCATION:Public Cloud Group -URL:https://www.meetup.com/cloud-native-linz/events/304003701/ -END:VEVENT -BEGIN:VEVENT -SUMMARY:Auto-updates in the CI/CD and Zero Trust Systems - CNCF Linz -DTSTART;TZID=Europe/Berlin:20250225T180000 -DTEND;TZID=Europe/Berlin:20250225T210000 -UID:a5bfc9e07964f8dddeb95fc584cd965d@cncflinz.at -DESCRIPTION:Host: Gepardec\nTalks:\n- Designing Zero Trust Systems by Damj - an Gjurovski\n- Auto-Updates of microservices in your CI/CD pipeline by Ch - ristoph Ruhsam\n\nEvent link (RSVP): https://www.meetup.com/cloud-native-l - inz/events/304124258/ -LOCATION:Gepardec -URL:https://www.meetup.com/cloud-native-linz/events/304124258/ -END:VEVENT -BEGIN:VEVENT -SUMMARY:Laravel in K8s and Shell Scripting - CNCF Linz -DTSTART;TZID=Europe/Berlin:20250318T180000 -DTEND;TZID=Europe/Berlin:20250318T210000 -UID:a5771bce93e200c36f7cd9dfd0e5deaa@cncflinz.at -DESCRIPTION:Host: karriere.at\nTalks:\n- Laravel in Kubernetes by Sebastia - n Huber\n- You Suck at Shell Scripting by Florian Arthofer\n\nEvent link ( - RSVP): https://www.meetup.com/cloud-native-linz/events/306377483/ -LOCATION:karriere.at -URL:https://www.meetup.com/cloud-native-linz/events/306377483/ -END:VEVENT -BEGIN:VEVENT -SUMMARY:Zero-Downtime Experiences & Event-Driven Microservices at scale - - CNCF Linz -DTSTART;TZID=Europe/Berlin:20250429T180000 -DTEND;TZID=Europe/Berlin:20250429T210000 -UID:d67d8ab4f4c10bf22aa353e27879133c@cncflinz.at -DESCRIPTION:Host: Tractive\nTalks:\n- Deploy Without Disruption: Crafting - Zero-Downtime Experiences with Stateless Services by Jan Wiesbauer\n- Buil - ding Event-Driven Microservices at scale with Azure Cosmos DB by Shahab Ga - nji\n\nEvent link (RSVP): https://www.meetup.com/cloud-native-linz/events/ - 307219291/ -LOCATION:Tractive -URL:https://www.meetup.com/cloud-native-linz/events/307219291/ -END:VEVENT -BEGIN:VEVENT -SUMMARY:TalosOS and CloudEvents - CNCF Linz -DTSTART;TZID=Europe/Berlin:20250520T180000 -DTEND;TZID=Europe/Berlin:20250520T210000 -UID:d645920e395fedad7bbbed0eca3fe2e0@cncflinz.at -DESCRIPTION:Host: Cloudflight\nTalks:\n- TalosOS: The OS Kubernetes Deserv - es by Siegfried Stumpfer\n- CloudEvents: A Standard for Event-Driven Archi - tectures by Christian Schabetsberger\n\nEvent link (RSVP): https://www.mee - tup.com/cloud-native-linz/events/307676898/ -LOCATION:Cloudflight -URL:https://www.meetup.com/cloud-native-linz/events/307676898/ -END:VEVENT -BEGIN:VEVENT -SUMMARY:OpenRewrite & Adversary Emulation for k8s - CNCF Linz -DTSTART;TZID=Europe/Berlin:20250701T180000 -DTEND;TZID=Europe/Berlin:20250701T210000 -UID:3416a75f4cea9109507cacd8e2f2aefc@cncflinz.at -DESCRIPTION:Host: Gepardec\nTalks:\n- OpenRewrite in a Nutshell: Scaling U - pgrades with Practical Insights by Simon Gartner\n- Adversary Emulation fo - r Kubernetes Environments by Markus Gierlinger\n\nEvent link (RSVP): https - ://www.meetup.com/cloud-native-linz/events/307975704/ -LOCATION:Gepardec -URL:https://www.meetup.com/cloud-native-linz/events/307975704/ -END:VEVENT -BEGIN:VEVENT -SUMMARY:cTENcf Party - celebrating 10 years of CNCF and 5 years of Cloud N - ative Linz - CNCF Linz -DTSTART;TZID=Europe/Berlin:20250924T173000 -DTEND;TZID=Europe/Berlin:20250924T203000 -UID:a1d0c6e83f027327d8461063f4ac58a6@cncflinz.at -DESCRIPTION:Host: G+D Netcetera\nTalks:\n- Secrets management - from plain - text to hiding keys in the Swiss Alps by Georg Mayrhauser\n- Open Mic - Sh - are your Cloud Native Journey by the community\n\nEvent link (RSVP): https - ://www.meetup.com/cloud-native-linz/events/310732711/ -LOCATION:G+D Netcetera\, Europaplatz 4\, 4020 Linz -URL:https://www.meetup.com/cloud-native-linz/events/310732711/ -END:VEVENT -BEGIN:VEVENT -SUMMARY:October 2025 edition at .LOUPE - CNCF Linz -DTSTART;TZID=Europe/Berlin:20251028T173000 -DTEND;TZID=Europe/Berlin:20251028T203000 -UID:17e62166fc8586dfa4d1bc0e1742c08b@cncflinz.at -DESCRIPTION:Host: .LOUPE\nTalks:\n- Is the Lambdalith the sweet spot in mo - dern Cloud architecture? by Matthias Steinbauer\n- Catch Hackers with Kone - y: Automated Honeytokens for Cloud-Native Apps by Mario Kahlhofer\n\nEvent - link (RSVP): https://www.meetup.com/cloud-native-linz/events/310733201/ -LOCATION:fobi solutions gmbh\, Industriezeile 35\, 4020 Linz -URL:https://www.meetup.com/cloud-native-linz/events/310733201/ -END:VEVENT -BEGIN:VEVENT -SUMMARY:Cloud Bills and the Bazzar - CNCF Linz -DTSTART;TZID=Europe/Berlin:20251125T173000 -DTEND;TZID=Europe/Berlin:20251125T203000 -UID:f7177163c833dff4b38fc8d2872f1ec6@cncflinz.at -DESCRIPTION:Host: MIC\nTalks:\n- Hacking the Cloud Bill: Building a Multi- - Cloud Cost Pipeline by Clemens Kriechbaumer & Heinz Mayer\n- The Kubernete - s and the Bazzar by Hubert Ströbitzer\n\nEvent link (RSVP): https://www.m - eetup.com/cloud-native-linz/events/310733593/ -LOCATION:MIC Datenverarbeitung GmbH\, Lederergasse 78\, 4020 Linz -URL:https://www.meetup.com/cloud-native-linz/events/310733593/ -END:VEVENT -BEGIN:VEVENT -SUMMARY:January 2026 edition hosted by PCG - CNCF Linz -DTSTART;TZID=Europe/Berlin:20260127T173000 -DTEND;TZID=Europe/Berlin:20260127T203000 -UID:6c8349cc7260ae62e3b1396831a8398f@cncflinz.at -DESCRIPTION:Host: PCG - Public Cloud Group\n -LOCATION:Startrampe\, Peter-Behrens-Platz 10\, 4020 Linz -END:VEVENT -END:VCALENDAR +BEGIN:VCALENDAR +VERSION:2.0 +PRODID:-//Cloud Native Linz Calendar//EN +X-WR-CALDESC:Meetup events for the Cloud Native Linz community +NAME:Cloud Native Linz Events +X-WR-CALNAME:Cloud Native Linz Events +BEGIN:VEVENT +SUMMARY:1. Cloud Native Computing Linz Meetup - CNCF Linz +DTSTART;TZID=Europe/Berlin:20200929T180000 +DTEND;TZID=Europe/Berlin:20200929T210000 +UID:c4ca4238a0b923820dcc509a6f75849b@cncflinz.at +DESCRIPTION:Host: online\nTalks:\n- Digital Transformation (from on-premis + es to the cloud) by Donovan Brown\n- Serverless on the AWS Cloud\, Challen + ges Beyond the Toy Problems by Matthias Steinbauer\n\nEvent link (RSVP): h + ttps://www.meetup.com/cloud-native-computing-linz/events/273245544/ +LOCATION:Online Event +URL:https://www.meetup.com/cloud-native-computing-linz/events/273245544/ +END:VEVENT +BEGIN:VEVENT +SUMMARY:2. Cloud Native Computing Linz Meetup - CNCF Linz +DTSTART;TZID=Europe/Berlin:20201027T180000 +DTEND;TZID=Europe/Berlin:20201027T210000 +UID:c81e728d9d4c2f636f067f89cc14862c@cncflinz.at +DESCRIPTION:Host: online\nTalks:\n- The challenges of exposing and connect + ing microservices by Denis Jannot\n- Custom Autoscaling with Prometheus\, + Grafana\, and a little bit of code by János Pásztor\n\nEvent link (RSVP) + : https://www.meetup.com/cloud-native-computing-linz/events/273726815/ +LOCATION:Online Event +URL:https://www.meetup.com/cloud-native-computing-linz/events/273726815/ +END:VEVENT +BEGIN:VEVENT +SUMMARY:3. Cloud Native Computing Linz Meetup - CNCF Linz +DTSTART;TZID=Europe/Berlin:20201124T180000 +DTEND;TZID=Europe/Berlin:20201124T210000 +UID:eccbc87e4b5ce2fe28308fd9f2a7baf3@cncflinz.at +DESCRIPTION:Host: online\nTalks:\n- KubeOne for Beginners by Malte Menkhof + f\n- Kubernetes certifications: How to prepare and get it done by Juliano + Costa & Yuri Oliveira\n\nEvent link (RSVP): https://www.meetup.com/cloud-n + ative-computing-linz/events/274417589/ +LOCATION:Online Event +URL:https://www.meetup.com/cloud-native-computing-linz/events/274417589/ +END:VEVENT +BEGIN:VEVENT +SUMMARY:4. Cloud Native Computing Linz Meetup - CNCF Linz +DTSTART;TZID=Europe/Berlin:20210126T180000 +DTEND;TZID=Europe/Berlin:20210126T210000 +UID:a87ff679a2f3e71d9181a67b7542122c@cncflinz.at +DESCRIPTION:Host: online\nTalks:\n- Remote debugging challenges in Kuberne + tes by Oded Keret\n- When the destination is not what you expect to be or + MITM in k8s by Dimitrij Klesev\n\nEvent link (RSVP): https://www.meetup.co + m/cloud-native-computing-linz/events/275600776/ +LOCATION:Online Event +URL:https://www.meetup.com/cloud-native-computing-linz/events/275600776/ +END:VEVENT +BEGIN:VEVENT +SUMMARY:5. Cloud Native Computing Linz Meetup - CNCF Linz +DTSTART;TZID=Europe/Berlin:20210223T180000 +DTEND;TZID=Europe/Berlin:20210223T210000 +UID:e4da3b7fbbce2345d7772b0674a318d5@cncflinz.at +DESCRIPTION:Host: online\nTalks:\n- Observability & Declarative Hypothesis + in Chaos Engineering by Karthik S\n- Can I write a platform in the cloud + as a single person? by Michael Aufreiter\n\nEvent link (RSVP): https://www + .meetup.com/cloud-native-computing-linz/events/276236712/ +LOCATION:Online Event +URL:https://www.meetup.com/cloud-native-computing-linz/events/276236712/ +END:VEVENT +BEGIN:VEVENT +SUMMARY:6. Cloud Native Computing Linz Meetup - CNCF Linz +DTSTART;TZID=Europe/Berlin:20210330T180000 +DTEND;TZID=Europe/Berlin:20210330T210000 +UID:1679091c5a880faf6fb5e6087eb1b2dc@cncflinz.at +DESCRIPTION:Host: online\nTalks:\n- Continuous Security - Building Securit + y into your Pipelines by Matt Jarvis\n- Cloud Security Beyond Technology b + y Rainer Stropek\n\nEvent link (RSVP): https://www.meetup.com/cloud-native + -computing-linz/events/276718585/ +LOCATION:Online Event +URL:https://www.meetup.com/cloud-native-computing-linz/events/276718585/ +END:VEVENT +BEGIN:VEVENT +SUMMARY:7. Cloud Native Computing Linz Meetup - CNCF Linz +DTSTART;TZID=Europe/Berlin:20210427T180000 +DTEND;TZID=Europe/Berlin:20210427T210000 +UID:8f14e45fceea167a5a36dedd4bea2543@cncflinz.at +DESCRIPTION:Host: online\nTalks:\n- All you need to know about OpenTelemet + ry by Juraci Paixão Kröhling\n\nEvent link (RSVP): https://www.meetup.co + m/cloud-native-computing-linz/events/277569639/ +LOCATION:Online Event +URL:https://www.meetup.com/cloud-native-computing-linz/events/277569639/ +END:VEVENT +BEGIN:VEVENT +SUMMARY:8. Cloud Native Computing Linz Meetup - CNCF Linz +DTSTART;TZID=Europe/Berlin:20210525T180000 +DTEND;TZID=Europe/Berlin:20210525T210000 +UID:c9f0f895fb98ab9159f51fd0297e236d@cncflinz.at +DESCRIPTION:Host: online\nTalks:\n- Cloud-Native Storage: What it can and + can't (yet) do by Moritz Wanzenböck\n\nEvent link (RSVP): https://www.mee + tup.com/cloud-native-computing-linz/events/278104169/ +LOCATION:Online Event +URL:https://www.meetup.com/cloud-native-computing-linz/events/278104169/ +END:VEVENT +BEGIN:VEVENT +SUMMARY:9. Cloud Native Computing Linz Meetup - CNCF Linz +DTSTART;TZID=Europe/Berlin:20210629T180000 +DTEND;TZID=Europe/Berlin:20210629T210000 +UID:45c48cce2e2d7fbdea1afc51c7c6ad26@cncflinz.at +DESCRIPTION:Host: online\nTalks:\n- Service Mesh Principles: Observability + through Telemetry with Linkerd by Charles Pretzer\n\nEvent link (RSVP): h + ttps://www.meetup.com/cloud-native-computing-linz/events/278914758/ +LOCATION:Online Event +URL:https://www.meetup.com/cloud-native-computing-linz/events/278914758/ +END:VEVENT +BEGIN:VEVENT +SUMMARY:10. Cloud Native Computing Linz Meetup - CNCF Linz +DTSTART;TZID=Europe/Berlin:20210928T180000 +DTEND;TZID=Europe/Berlin:20210928T210000 +UID:d3d9446802a44259755d38e6d163e820@cncflinz.at +DESCRIPTION:Host: online\nTalks:\n- Automatically optimize cloud-native sy + stems for fun and profit by Lars Wolff\n\nEvent link (RSVP): https://www.m + eetup.com/cloud-native-computing-linz/events/280749046/ +LOCATION:Online Event +URL:https://www.meetup.com/cloud-native-computing-linz/events/280749046/ +END:VEVENT +BEGIN:VEVENT +SUMMARY:11. IN PERSON - Cloud Native Computing Linz Meetup - CNCF Linz +DTSTART;TZID=Europe/Berlin:20211019T180000 +DTEND;TZID=Europe/Berlin:20211019T210000 +UID:6512bd43d9caa6e02c990b0a82652dca@cncflinz.at +DESCRIPTION:Host: Dynatrace\nTalks:\n- The 1001 serverless options of Micr + osoft Azure by Philipp Weckerle\n- How OpenTelemetry is currently used at + my company by Juliano Costa\n\nEvent link (RSVP): https://www.meetup.com/c + loud-native-computing-linz/events/281064988/ +LOCATION:Dynatrace +URL:https://www.meetup.com/cloud-native-computing-linz/events/281064988/ +END:VEVENT +BEGIN:VEVENT +SUMMARY:12. Cloud Native Computing Linz Meetup - CNCF Linz +DTSTART;TZID=Europe/Berlin:20220223T180000 +DTEND;TZID=Europe/Berlin:20220223T210000 +UID:c20ad4d76fe97759aa27a0c99bff6710@cncflinz.at +DESCRIPTION:Host: online\nTalks:\n- A Tour of Operator-SDK by Alexandre Me + nezes & Yuri Oliveira Sá\n\nEvent link (RSVP): https://www.meetup.com/clo + ud-native-computing-linz/events/283691539/ +LOCATION:Online Event +URL:https://www.meetup.com/cloud-native-computing-linz/events/283691539/ +END:VEVENT +BEGIN:VEVENT +SUMMARY:13. Cloud Native Computing Linz Meetup (joint meetup with eJUG Lin + z) - CNCF Linz +DTSTART;TZID=Europe/Berlin:20220330T180000 +DTEND;TZID=Europe/Berlin:20220330T210000 +UID:c51ce410c124a10e0db5e4b97fc2af39@cncflinz.at +DESCRIPTION:Host: smec\nTalks:\n- Java on Azure by Ed Burns\n\nEvent link + (RSVP): https://www.meetup.com/cloud-native-computing-linz/events/28466221 + 9/ +LOCATION:smec +URL:https://www.meetup.com/cloud-native-computing-linz/events/284662219/ +END:VEVENT +BEGIN:VEVENT +SUMMARY:14. Cloud Native Computing Linz Meetup - CNCF Linz +DTSTART;TZID=Europe/Berlin:20220419T180000 +DTEND;TZID=Europe/Berlin:20220419T210000 +UID:aab3238922bcc25a6f606eb525ffdc56@cncflinz.at +DESCRIPTION:Host: hello again\nTalks:\n- The art of scaling without scalin + g your DevOps-Team by Michael Schöndorfer\n- The 7 deadly sins in Kuberne + tes by Hubert Ströbitzer\n\nEvent link (RSVP): https://www.meetup.com/clo + ud-native-computing-linz/events/284847987/ +LOCATION:hello again +URL:https://www.meetup.com/cloud-native-computing-linz/events/284847987/ +END:VEVENT +BEGIN:VEVENT +SUMMARY:15. Cloud Native Computing Linz Meetup - CNCF Linz +DTSTART;TZID=Europe/Berlin:20220531T180000 +DTEND;TZID=Europe/Berlin:20220531T210000 +UID:9bf31c7ff062936a96d3c8bd1f8f2ff3@cncflinz.at +DESCRIPTION:Host: G+D Netcetera\nTalks:\n- How deploying feature branches + opened the door to more scalability by Markus Adelsberger\n- From Command + Line to GitOps - how we transformed our infrastructure by Thomas Einwaller + \n\nEvent link (RSVP): https://www.meetup.com/cloud-native-computing-linz/ + events/285775843/ +LOCATION:G+D Netcetera +URL:https://www.meetup.com/cloud-native-computing-linz/events/285775843/ +END:VEVENT +BEGIN:VEVENT +SUMMARY:16. Cloud Native Computing Linz Meetup - CNCF Linz +DTSTART;TZID=Europe/Berlin:20220628T180000 +DTEND;TZID=Europe/Berlin:20220628T210000 +UID:c74d97b01eae257e44aa9d5bade97baf@cncflinz.at +DESCRIPTION:Host: Dynatrace\nTalks:\n- Policy as Code - an introduction to + Open Policy Agent by Anders Eknert\n- ClickOps over GitOps by Laszlo Foga + s\n\nEvent link (RSVP): https://www.meetup.com/cloud-native-computing-linz + /events/286504906/ +LOCATION:Dynatrace +URL:https://www.meetup.com/cloud-native-computing-linz/events/286504906/ +END:VEVENT +BEGIN:VEVENT +SUMMARY:17. Cloud Native Computing Linz Meetup - CNCF Linz +DTSTART;TZID=Europe/Berlin:20221018T180000 +DTEND;TZID=Europe/Berlin:20221018T210000 +UID:70efdf2ec9b086079795c442636b55fb@cncflinz.at +DESCRIPTION:Host: Cloudflight\nTalks:\n- Kubernetes\, docker\, cri-o\, con + tainerd\, OCI\, runC\, container - what they are and how they fit together + by Martin Strigl\n- Kong's Service Connectivity Platform by Marco Marquez + \n\nEvent link (RSVP): https://community.cncf.io/events/details/cncf-linz- + presents-17-cloud-native-computing-linz-meetup-october-18-2022/ +LOCATION:Cloudflight +URL:https://community.cncf.io/events/details/cncf-linz-presents-17-cloud-n + ative-computing-linz-meetup-october-18-2022/ +END:VEVENT +BEGIN:VEVENT +SUMMARY:18. Cloud Native Computing Linz Meetup - CNCF Linz +DTSTART;TZID=Europe/Berlin:20221122T180000 +DTEND;TZID=Europe/Berlin:20221122T210000 +UID:6f4922f45568161a8cdf4ad2299f6d23@cncflinz.at +DESCRIPTION:Host: Tractive\nTalks:\n- How to build fault resistant service + s with infrastructure automation? by Stefan Burgholzer\n- Secure DevOps En + vironment by Christian Köberl\n\nEvent link (RSVP): https://community.cnc + f.io/events/details/cncf-linz-presents-18-cloud-native-computing-linz-meet + up-november-22-2022/ +LOCATION:Tractive +URL:https://community.cncf.io/events/details/cncf-linz-presents-18-cloud-n + ative-computing-linz-meetup-november-22-2022/ +END:VEVENT +BEGIN:VEVENT +SUMMARY:19. Cloud Native Computing Linz Meetup - CNCF Linz +DTSTART;TZID=Europe/Berlin:20230117T180000 +DTEND;TZID=Europe/Berlin:20230117T210000 +UID:1f0e3dad99908345f7439f8ffabdffc4@cncflinz.at +DESCRIPTION:Host: Startrampe\nTalks:\n- Instrumenting Tyk API Gateway with + OpenTelemetry by Sonja Chevre\n- Don't deploy into the DARK! DORA Metrics + : automatically\, for all your k8s workloads! by Andreas Grabner\n\nEvent + link (RSVP): https://community.cncf.io/events/details/cncf-linz-presents-c + loud-native-linz-jan-17-k8s-dora-metrics-and-tyk-gateway-with-opentelemetr + y/ +LOCATION:Startrampe +URL:https://community.cncf.io/events/details/cncf-linz-presents-cloud-nati + ve-linz-jan-17-k8s-dora-metrics-and-tyk-gateway-with-opentelemetry/ +END:VEVENT +BEGIN:VEVENT +SUMMARY:Kubernetes Alternatives - CNCF Linz +DTSTART;TZID=Europe/Berlin:20230221T180000 +DTEND;TZID=Europe/Berlin:20230221T210000 +UID:98f13708210194c475687be6106a3b84@cncflinz.at +DESCRIPTION:Host: Usersnap\nTalks:\n- Serverless container workloads beyon + d K8s by Martin Sereinig\n- Kubernetes Alternatives by Martin Ahrer\n\nEve + nt link (RSVP): https://community.cncf.io/events/details/cncf-linz-present + s-cloud-native-linz-feb-21-kubernetes-alternatives/ +LOCATION:Usersnap +URL:https://community.cncf.io/events/details/cncf-linz-presents-cloud-nati + ve-linz-feb-21-kubernetes-alternatives/ +END:VEVENT +BEGIN:VEVENT +SUMMARY:Crossplane Usecases - CNCF Linz +DTSTART;TZID=Europe/Berlin:20230328T180000 +DTEND;TZID=Europe/Berlin:20230328T210000 +UID:3c59dc048e8850243be8079a5c74d079@cncflinz.at +DESCRIPTION:Host: Dynatrace\nTalks:\n- Crossplane & GitOps: A perfect matc + h? by Katharina Sick\n- Kubernetes as a universal controlplane: An Introdu + ction into Crossplane by David Hondl\n\nEvent link (RSVP): https://communi + ty.cncf.io/events/details/cncf-linz-presents-cloud-native-linz-march-28-cr + ossplane-use-cases/ +LOCATION:Dynatrace +URL:https://community.cncf.io/events/details/cncf-linz-presents-cloud-nati + ve-linz-march-28-crossplane-use-cases/ +END:VEVENT +BEGIN:VEVENT +SUMMARY:Hagenberg Edition - CNCF Linz +DTSTART;TZID=Europe/Berlin:20230418T180000 +DTEND;TZID=Europe/Berlin:20230418T210000 +UID:b6d767d2f8ed5d21a44b0e5886680cb9@cncflinz.at +DESCRIPTION:Host: Porsche Informatik\nTalks:\n- Let's Turn Off the Databas + e - Chaos Engineering @ Porsche Informatik by Carolin Schuntermann\n- Supe + rcharge Your Coding with GitHub Copilot and Actions: The AI-Powered Produc + tivity Duo by Jürgen Etzlstorfer\n\nEvent link (RSVP): https://community. + cncf.io/events/details/cncf-linz-presents-cloud-native-linz-april-18-hagen + berg-edition/ +LOCATION:Porsche Informatik +URL:https://community.cncf.io/events/details/cncf-linz-presents-cloud-nati + ve-linz-april-18-hagenberg-edition/ +END:VEVENT +BEGIN:VEVENT +SUMMARY:CertOps and K8sGPT - CNCF Linz +DTSTART;TZID=Europe/Berlin:20230530T180000 +DTEND;TZID=Europe/Berlin:20230530T210000 +UID:37693cfc748049e45d87b8c7d8b9aacd@cncflinz.at +DESCRIPTION:Host: Cloudflight\nTalks:\n- CertOps: Certificate Lifecycle Ma + nagement done Cloud Native by Martin Strigl\n- Leveraging AI to Troublesho + ot Kubernetes with K8sGPT by Thomas Schuetz\n\nEvent link (RSVP): https:// + community.cncf.io/events/details/cncf-linz-presents-cloud-native-linz-may- + 30-troubleshooting-with-k8sgpt/ +LOCATION:Cloudflight +URL:https://community.cncf.io/events/details/cncf-linz-presents-cloud-nati + ve-linz-may-30-troubleshooting-with-k8sgpt/ +END:VEVENT +BEGIN:VEVENT +SUMMARY:GitOps & Terraform and a Guide to OpenTelemetry - CNCF Linz +DTSTART;TZID=Europe/Berlin:20230627T180000 +DTEND;TZID=Europe/Berlin:20230627T210000 +UID:1ff1de774005f8da13f42943881c655f@cncflinz.at +DESCRIPTION:Host: Runtastic\nTalks:\n- GitOps and Terraform by Alexander L + ackner\n- Distributed Tracing and OpenTelemetry by Daniel Khan\n\nEvent li + nk (RSVP): https://community.cncf.io/events/details/cncf-linz-presents-clo + ud-native-linz-june-27-gitops-terraform-and-a-guide-to-opentelemetry/ +LOCATION:Runtastic +URL:https://community.cncf.io/events/details/cncf-linz-presents-cloud-nati + ve-linz-june-27-gitops-terraform-and-a-guide-to-opentelemetry/ +END:VEVENT +BEGIN:VEVENT +SUMMARY:Migration to Cloud Native & The Power of Operators - CNCF Linz +DTSTART;TZID=Europe/Berlin:20230919T180000 +DTEND;TZID=Europe/Berlin:20230919T210000 +UID:8e296a067a37563370ded05f5a3bf3ec@cncflinz.at +DESCRIPTION:Host: G+D Netcetera\nTalks:\n- Scaling Observability - Dynatra + ce Operator by Christoph Müllner\n- Migration of on-prem payment systems + to a Cloud Native Environments by Markus Adelsberger & Georg Mayrhauser\n\ + nEvent link (RSVP): https://community.cncf.io/events/details/cncf-linz-pre + sents-cloud-native-linz-sept-19-migration-to-cloud-native-amp-the-power-of + -operators/ +LOCATION:G+D Netcetera +URL:https://community.cncf.io/events/details/cncf-linz-presents-cloud-nati + ve-linz-sept-19-migration-to-cloud-native-amp-the-power-of-operators/ +END:VEVENT +BEGIN:VEVENT +SUMMARY:Testing K8s Operators & OpenTelemetry for Logs - CNCF Linz +DTSTART;TZID=Europe/Berlin:20231018T180000 +DTEND;TZID=Europe/Berlin:20231018T210000 +UID:4e732ced3463d06de0ca9a15b6153677@cncflinz.at +DESCRIPTION:Host: eww IT and TEL\nTalks:\n- Test and evolve your Kubernete + s Operators by Riccardo Capraro\n- OpenTelemetry for Logging by Philipp Kr + enn\n\nEvent link (RSVP): https://community.cncf.io/events/details/cncf-li + nz-presents-cloud-native-linz-october-18-testing-k8s-operators-amp-opentel + emetry-for-logs/ +LOCATION:eww IT and TEL +URL:https://community.cncf.io/events/details/cncf-linz-presents-cloud-nati + ve-linz-october-18-testing-k8s-operators-amp-opentelemetry-for-logs/ +END:VEVENT +BEGIN:VEVENT +SUMMARY:GitOps and Testing Cloud Environments - CNCF Linz +DTSTART;TZID=Europe/Berlin:20231121T180000 +DTEND;TZID=Europe/Berlin:20231121T210000 +UID:02e74f10e0327ad868d138f2b4fdd6f0@cncflinz.at +DESCRIPTION:Host: MIC\nTalks:\n- Automating Legacy System Management with + GitOps: A Journey from On-Premises to Kubernetes by Michael Skledar\n- Tam + ing and Testing the Cloud Environment from localhost to cncf.io by Anca Gh + enade\n\nEvent link (RSVP): https://community.cncf.io/events/details/cncf- + linz-presents-cloud-native-linz-november-21-gitops-and-testing-cloud-envir + onments/ +LOCATION:MIC +URL:https://community.cncf.io/events/details/cncf-linz-presents-cloud-nati + ve-linz-november-21-gitops-and-testing-cloud-environments/ +END:VEVENT +BEGIN:VEVENT +SUMMARY:Cloud Adventure and Cloud Native Sustainability - CNCF Linz +DTSTART;TZID=Europe/Berlin:20240124T180000 +DTEND;TZID=Europe/Berlin:20240124T210000 +UID:33e75ff09dd601bbe69f351039152189@cncflinz.at +DESCRIPTION:Host: karriere.at\nTalks:\n- Cloud Adventure by Georg Buchgehe + r\n- Green Software by Erik Auer\n\nEvent link (RSVP): https://community.c + ncf.io/events/details/cncf-linz-presents-cloud-native-linz-january-24-clou + d-adventure-and-cloud-native-sustainability/ +LOCATION:karriere.at +URL:https://community.cncf.io/events/details/cncf-linz-presents-cloud-nati + ve-linz-january-24-cloud-adventure-and-cloud-native-sustainability/ +END:VEVENT +BEGIN:VEVENT +SUMMARY:Access Control and Platforms with Devs in Mind - CNCF Linz +DTSTART;TZID=Europe/Berlin:20240227T180000 +DTEND;TZID=Europe/Berlin:20240227T210000 +UID:6ea9ab1baa0efb9e19094440c317e21b@cncflinz.at +DESCRIPTION:Host: Gepardec\nTalks:\n- Pathways\, Not Pitfalls: Building Pl + atforms With Developers in Mind by Katharina Sick\n- An Open-Source approa + ch to Multi-tenant Label-based Access control by Constantin Winkler\n\nEve + nt link (RSVP): https://community.cncf.io/events/details/cncf-linz-present + s-cloud-native-linz-february-27-access-control-and-platforms-with-devs-in- + mind/ +LOCATION:Gepardec +URL:https://community.cncf.io/events/details/cncf-linz-presents-cloud-nati + ve-linz-february-27-access-control-and-platforms-with-devs-in-mind/ +END:VEVENT +BEGIN:VEVENT +SUMMARY:K8s Journey and a Multi-Layer K8s Security System - CNCF Linz +DTSTART;TZID=Europe/Berlin:20240326T180000 +DTEND;TZID=Europe/Berlin:20240326T210000 +UID:34173cb38f07f89ddbebc2ac9128303f@cncflinz.at +DESCRIPTION:Host: Runtastic\nTalks:\n- A Tale of ROSEs and Containers: Our + Kubernetes Journey by Alexander Lackner & Armin Deliomini\n- Implementing + a Multi-Layer Kubernetes Security System with SUSE NeuVector by Daniel Dr + ack\n\nEvent link (RSVP): https://community.cncf.io/events/details/cncf-li + nz-presents-cloud-native-linz-march-26-kubernetes-journey-and-a-multi-laye + r-kubernetes-security-system/ +LOCATION:Runtastic +URL:https://community.cncf.io/events/details/cncf-linz-presents-cloud-nati + ve-linz-march-26-kubernetes-journey-and-a-multi-layer-kubernetes-security- + system/ +END:VEVENT +BEGIN:VEVENT +SUMMARY:Secure K8s Deployment and API Management in Azure - CNCF Linz +DTSTART;TZID=Europe/Berlin:20240423T180000 +DTEND;TZID=Europe/Berlin:20240423T210000 +UID:c16a5320fa475530d9583c34fd356ef5@cncflinz.at +DESCRIPTION:Host: Public Cloud Group\nTalks:\n- How to securely deploy Kub + ernetes on Azure by Marcel Tober & Andreas Wimmersberger\n- Transforming d + iverse system landscapes into sustainable API products with Azure API Mana + gement by Tobias Berei\n\nEvent link (RSVP): https://www.meetup.com/cloud- + native-linz/events/298076702/ +LOCATION:Public Cloud Group +URL:https://www.meetup.com/cloud-native-linz/events/298076702/ +END:VEVENT +BEGIN:VEVENT +SUMMARY:Inspecting Running Containers & Observability on the Edge - CNCF L + inz +DTSTART;TZID=Europe/Berlin:20240625T180000 +DTEND;TZID=Europe/Berlin:20240625T210000 +UID:6364d3f0f495b6ab9dcf8d3b5c6e0b01@cncflinz.at +DESCRIPTION:Host: Cloudflight\nTalks:\n- Inspecting running containers by + Martin Strigl\n- Observability at the Edge: Envoy Distributed Tracing with + OpenTelemetry by João Grassi\n\nEvent link (RSVP): https://www.meetup.co + m/cloud-native-linz/events/300982876/ +LOCATION:Cloudflight +URL:https://www.meetup.com/cloud-native-linz/events/300982876/ +END:VEVENT +BEGIN:VEVENT +SUMMARY:OpenTelemetry Errors - CNCF Linz +DTSTART;TZID=Europe/Berlin:20240918T180000 +DTEND;TZID=Europe/Berlin:20240918T210000 +UID:182be0c5cdcd5072bb1864cdee4d3d6e@cncflinz.at +DESCRIPTION:Host: online\nTalks:\n- Dude\, Where's My Error? How OTel Reco + rds Errors\, and Why it Does Like That by Adriana Villela & Reese Lee\n\nE + vent link (RSVP): https://www.meetup.com/cloud-native-linz/events/30257076 + 1/ +LOCATION:Online Event +URL:https://www.meetup.com/cloud-native-linz/events/302570761/ +END:VEVENT +BEGIN:VEVENT +SUMMARY:Beyond k8s and OpenSource Metrics - CNCF Linz +DTSTART;TZID=Europe/Berlin:20241021T180000 +DTEND;TZID=Europe/Berlin:20241021T210000 +UID:e369853df766fa44e1ed0ff613f563bd@cncflinz.at +DESCRIPTION:Host: Dynatrace\nTalks:\n- Open-Source Metrics Primer by Georg + Pirklbauer\n- Beyond Kubernetes: Integrating Backstage for a Seamless Dev + eloper Experience by Philipp Bergsmann\n\nEvent link (RSVP): https://www.m + eetup.com/cloud-native-linz/events/303406885/ +LOCATION:Dynatrace +URL:https://www.meetup.com/cloud-native-linz/events/303406885/ +END:VEVENT +BEGIN:VEVENT +SUMMARY:Cloud-Native Harmony & Backstage Techdocs - CNCF Linz +DTSTART;TZID=Europe/Berlin:20241119T180000 +DTEND;TZID=Europe/Berlin:20241119T210000 +UID:1c383cd30b7c298ab50293adfecb7b18@cncflinz.at +DESCRIPTION:Host: cloudxcelerate\nTalks:\n- From IT Ops to Cloud-Native Ha + rmony by Alexander Höllwart & Michael “Obi” Obernberger\n- Backstage + Techdocs by Sebastian Poxhofer\n\nEvent link (RSVP): https://www.meetup.co + m/cloud-native-computing-linz/events/302568919/ +LOCATION:cloudxcelerate +URL:https://www.meetup.com/cloud-native-computing-linz/events/302568919/ +END:VEVENT +BEGIN:VEVENT +SUMMARY:Containerized Builds & Beesting - CNCF Linz +DTSTART;TZID=Europe/Berlin:20250115T180000 +DTEND;TZID=Europe/Berlin:20250115T210000 +UID:19ca14e7ea6328a42e0eb13d585e4c22@cncflinz.at +DESCRIPTION:Host: Public Cloud Group\nTalks:\n- A closer look at Docker Bu + ildKit and Buildx by Sophia Zehethofer\n- Beesting Can't touch this by Pat + rick Pichler\n\nEvent link (RSVP): https://www.meetup.com/cloud-native-lin + z/events/304003701/ +LOCATION:Public Cloud Group +URL:https://www.meetup.com/cloud-native-linz/events/304003701/ +END:VEVENT +BEGIN:VEVENT +SUMMARY:Auto-updates in the CI/CD and Zero Trust Systems - CNCF Linz +DTSTART;TZID=Europe/Berlin:20250225T180000 +DTEND;TZID=Europe/Berlin:20250225T210000 +UID:a5bfc9e07964f8dddeb95fc584cd965d@cncflinz.at +DESCRIPTION:Host: Gepardec\nTalks:\n- Designing Zero Trust Systems by Damj + an Gjurovski\n- Auto-Updates of microservices in your CI/CD pipeline by Ch + ristoph Ruhsam\n\nEvent link (RSVP): https://www.meetup.com/cloud-native-l + inz/events/304124258/ +LOCATION:Gepardec +URL:https://www.meetup.com/cloud-native-linz/events/304124258/ +END:VEVENT +BEGIN:VEVENT +SUMMARY:Laravel in K8s and Shell Scripting - CNCF Linz +DTSTART;TZID=Europe/Berlin:20250318T180000 +DTEND;TZID=Europe/Berlin:20250318T210000 +UID:a5771bce93e200c36f7cd9dfd0e5deaa@cncflinz.at +DESCRIPTION:Host: karriere.at\nTalks:\n- Laravel in Kubernetes by Sebastia + n Huber\n- You Suck at Shell Scripting by Florian Arthofer\n\nEvent link ( + RSVP): https://www.meetup.com/cloud-native-linz/events/306377483/ +LOCATION:karriere.at +URL:https://www.meetup.com/cloud-native-linz/events/306377483/ +END:VEVENT +BEGIN:VEVENT +SUMMARY:Zero-Downtime Experiences & Event-Driven Microservices at scale - + CNCF Linz +DTSTART;TZID=Europe/Berlin:20250429T180000 +DTEND;TZID=Europe/Berlin:20250429T210000 +UID:d67d8ab4f4c10bf22aa353e27879133c@cncflinz.at +DESCRIPTION:Host: Tractive\nTalks:\n- Deploy Without Disruption: Crafting + Zero-Downtime Experiences with Stateless Services by Jan Wiesbauer\n- Buil + ding Event-Driven Microservices at scale with Azure Cosmos DB by Shahab Ga + nji\n\nEvent link (RSVP): https://www.meetup.com/cloud-native-linz/events/ + 307219291/ +LOCATION:Tractive +URL:https://www.meetup.com/cloud-native-linz/events/307219291/ +END:VEVENT +BEGIN:VEVENT +SUMMARY:TalosOS and CloudEvents - CNCF Linz +DTSTART;TZID=Europe/Berlin:20250520T180000 +DTEND;TZID=Europe/Berlin:20250520T210000 +UID:d645920e395fedad7bbbed0eca3fe2e0@cncflinz.at +DESCRIPTION:Host: Cloudflight\nTalks:\n- TalosOS: The OS Kubernetes Deserv + es by Siegfried Stumpfer\n- CloudEvents: A Standard for Event-Driven Archi + tectures by Christian Schabetsberger\n\nEvent link (RSVP): https://www.mee + tup.com/cloud-native-linz/events/307676898/ +LOCATION:Cloudflight +URL:https://www.meetup.com/cloud-native-linz/events/307676898/ +END:VEVENT +BEGIN:VEVENT +SUMMARY:OpenRewrite & Adversary Emulation for k8s - CNCF Linz +DTSTART;TZID=Europe/Berlin:20250701T180000 +DTEND;TZID=Europe/Berlin:20250701T210000 +UID:3416a75f4cea9109507cacd8e2f2aefc@cncflinz.at +DESCRIPTION:Host: Gepardec\nTalks:\n- OpenRewrite in a Nutshell: Scaling U + pgrades with Practical Insights by Simon Gartner\n- Adversary Emulation fo + r Kubernetes Environments by Markus Gierlinger\n\nEvent link (RSVP): https + ://www.meetup.com/cloud-native-linz/events/307975704/ +LOCATION:Gepardec +URL:https://www.meetup.com/cloud-native-linz/events/307975704/ +END:VEVENT +BEGIN:VEVENT +SUMMARY:cTENcf Party - celebrating 10 years of CNCF and 5 years of Cloud N + ative Linz - CNCF Linz +DTSTART;TZID=Europe/Berlin:20250924T173000 +DTEND;TZID=Europe/Berlin:20250924T203000 +UID:a1d0c6e83f027327d8461063f4ac58a6@cncflinz.at +DESCRIPTION:Host: G+D Netcetera\nTalks:\n- Secrets management - from plain + text to hiding keys in the Swiss Alps by Georg Mayrhauser\n- Open Mic - Sh + are your Cloud Native Journey by the community\n\nEvent link (RSVP): https + ://www.meetup.com/cloud-native-linz/events/310732711/ +LOCATION:G+D Netcetera\, Europaplatz 4\, 4020 Linz +URL:https://www.meetup.com/cloud-native-linz/events/310732711/ +END:VEVENT +BEGIN:VEVENT +SUMMARY:October 2025 edition at .LOUPE - CNCF Linz +DTSTART;TZID=Europe/Berlin:20251028T173000 +DTEND;TZID=Europe/Berlin:20251028T203000 +UID:17e62166fc8586dfa4d1bc0e1742c08b@cncflinz.at +DESCRIPTION:Host: .LOUPE\nTalks:\n- Is the Lambdalith the sweet spot in mo + dern Cloud architecture? by Matthias Steinbauer\n- Catch Hackers with Kone + y: Automated Honeytokens for Cloud-Native Apps by Mario Kahlhofer\n\nEvent + link (RSVP): https://www.meetup.com/cloud-native-linz/events/310733201/ +LOCATION:fobi solutions gmbh\, Industriezeile 35\, 4020 Linz +URL:https://www.meetup.com/cloud-native-linz/events/310733201/ +END:VEVENT +BEGIN:VEVENT +SUMMARY:Cloud Bills and the Bazzar - CNCF Linz +DTSTART;TZID=Europe/Berlin:20251125T173000 +DTEND;TZID=Europe/Berlin:20251125T203000 +UID:f7177163c833dff4b38fc8d2872f1ec6@cncflinz.at +DESCRIPTION:Host: MIC\nTalks:\n- Hacking the Cloud Bill: Building a Multi- + Cloud Cost Pipeline by Clemens Kriechbaumer & Heinz Mayer\n- The Kubernete + s and the Bazzar by Hubert Ströbitzer\n\nEvent link (RSVP): https://www.m + eetup.com/cloud-native-linz/events/310733593/ +LOCATION:MIC Datenverarbeitung GmbH\, Lederergasse 78\, 4020 Linz +URL:https://www.meetup.com/cloud-native-linz/events/310733593/ +END:VEVENT +BEGIN:VEVENT +SUMMARY:January 2026 edition hosted by PCG - CNCF Linz +DTSTART;TZID=Europe/Berlin:20260127T173000 +DTEND;TZID=Europe/Berlin:20260127T203000 +UID:6c8349cc7260ae62e3b1396831a8398f@cncflinz.at +DESCRIPTION:Host: PCG - Public Cloud Group\n +LOCATION:Startrampe\, Peter-Behrens-Platz 10\, 4020 Linz +END:VEVENT +END:VCALENDAR