Skip to content

Instantly share code, notes, and snippets.

View olimpiurob's full-sized avatar

Olimpiu Rob olimpiurob

View GitHub Profile
@olimpiurob
olimpiurob / kubernetes-intro-day-3.md
Created May 25, 2025 13:04
III. Introduction to Kubernetes

Introduction to Kubernetes / Deutsche Bank / 26, 27, 29 May 2025

Day 3: Advanced Concepts and Best Practices

Schedule - Day 3

  • 10:00 - 10:30: Days 1-2 Recap
  • 10:30 - 12:00: Storage and WordPress Example
  • 12:00 - 12:15: Break
  • 12:15 - 13:30: Resource Management
@olimpiurob
olimpiurob / kubernetes-intro-day-2.md
Created May 25, 2025 13:02
II. Introduction to Kubernetes

Introduction to Kubernetes / Deutsche Bank / 26, 27, 29 May 2025

Day 2: Service Networking and Configuration Management

Schedule - Day 2

  • 10:00 - 10:30: Day 1 Recap
  • 10:30 - 12:00: Ingress and External Access
  • 12:00 - 12:15: Break
  • 12:15 - 13:30: ConfigMaps & Secrets
@olimpiurob
olimpiurob / kubernetes-intro-day-1.md
Created May 25, 2025 13:01
I. Introduction to Kubernetes

Introduction to Kubernetes / Deutsche Bank / 26, 27, 29 May 2025

Day 1: Kubernetes Fundamentals

Schedule - Day 1

  • 10:00 - 10:30: Introduction and Environment Setup
  • 10:30 - 12:00: Containers Recap & Kubernetes Overview
  • 12:00 - 12:15: Break
  • 12:15 - 13:30: Kubernetes Objects & kubectl
<a href=""
target="_blank"
class="btn btn-edit"
tal:attributes="href string:${obj/absolute_url}/folder_contents"
>
#!/usr/bin/python
#
# Copyright 2014 Mikael Magnusson
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
FROM balloob/home-assistant
# Open Z-Wave disabled because broken
RUN apt-get update && \
apt-get install -y cython3 libudev-dev && \
apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* && \
pip3 install "cython<0.23" && \
pip3 install PyChromecast && \
script/build_python_openzwave
(Pdb) pp self.context.portal_setup.getSortedImportSteps()
(u'rolemap',
u'sharing',
u'plone-difftool',
u'properties',
u'eea.facetednavigation.various',
u'toolset',
u'cookie_authentication',
u'catalog',
u'workflow',
@olimpiurob
olimpiurob / .vimrc
Created October 19, 2015 18:19 — forked from david-batranu/.vimrc
plug-only vim, requires a ~/.vim/backups folder for persistent undo
call plug#begin('~/.vim/plugged')
Plug 'kien/ctrlp.vim'
Plug 'kien/rainbow_parentheses.vim'
Plug 'jeetsukumaran/vim-gazetteer'
Plug 'scrooloose/syntastic'
Plug 'scrooloose/nerdtree'
Plug 'vim-scripts/AutoComplPop'
Plug 'Yggdroot/indentLine'
Plug 'groenewege/vim-less'