Tested in kubernetes version 1.32
kubectl -n kube-system get configmap kubeadm-config -o jsonpath='{.data.ClusterConfiguration}' > kubeadm.yaml
- Add to
kubeadm.yaml
First you need to install pandoc.
I used brew install pandoc
to install via Homebrew since I'm on a mac.
Make a slides.md
for your slides (or name it whatever you want!). I put images in an /images/
folder. You can see how links and images and all of that work from this sample:
People
![]() :bowtie: |
😄 :smile: |
😆 :laughing: |
---|---|---|
😊 :blush: |
😃 :smiley: |
:relaxed: |
😏 :smirk: |
😍 :heart_eyes: |
😘 :kissing_heart: |
😚 :kissing_closed_eyes: |
😳 :flushed: |
😌 :relieved: |
😆 :satisfied: |
😁 :grin: |
😉 :wink: |
😜 :stuck_out_tongue_winking_eye: |
😝 :stuck_out_tongue_closed_eyes: |
😀 :grinning: |
😗 :kissing: |
😙 :kissing_smiling_eyes: |
😛 :stuck_out_tongue: |
// neiroc custom keybindigs | |
[ | |
{ | |
"key": "ctrl+d", | |
"command": "-editor.action.addSelectionToNextFindMatch", | |
"when": "editorFocus" | |
}, | |
{ | |
"key": "alt+n", | |
"command": "bookmarks.jumpToNext", |
# DOWNLOAD IMAGES FROM DB | |
# neiroc script | |
from datetime import datetime | |
from pymongo import MongoClient | |
import gridfs | |
def mongo_conn(): | |
try: | |
print('start ') |
#EXTM3U | |
# ITALY - BOLOGNA | |
#EXTINF:-1, Radio Città del Capo (Bologna) | |
http://stream2.netlit.eu/rcdc.m3u | |
#EXTINF:-1, Radio Città Fujiko (Bologna) | |
http://comodino.org:8001/rcf.ogg |
{ | |
// Use IntelliSense to learn about possible attributes. | |
// Hover to view descriptions of existing attributes. | |
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"type": "node", | |
"request": "launch", | |
"name": "Launch Program", |