This moved to https://github.com/PatrickLang/KubernetesForWindowsTutorial/tree/master/LabVm
These are my notes on how to set up GPG with the private key stored on the hardware Yubikey. This will reduce the chances of your GPG private key from being stolen, and also allow you to protect other secrets such as SSH private keys.
It's just some notes and a partial worklog for now, but I may turn it into a full blog post later.
I hereby claim:
- I am patricklang on github.
- I am patricklang (https://keybase.io/patricklang) on keybase.
- I have a public key ASAdO5y1E-8KsfWIVGlxU_JB4iStpfs53NGmv79Urw8xsQo
To claim this, I am signing this object:
Roon Bridge -> PulseAudio null-sink
Need to set null-sink to 16/44.1k or 16/48k
PulseAudio null-sink -> DarkIce
http://www.skyehaven.net/blog/2011/03/14/mumble-icecast/ has a similar example of above two steps
Assuming WinRM already enabled
kubectl run psh --image=mcr.microsoft.com/powershell -i -t --overrides='{ "apiVersion": "extensions/v1beta1", "spec":{"template":{"spec": {"nodeSelector":{"beta.kubernetes.io/os":"linux"}}}}}'
# or maybe
kubectl run psh --image=mcr.microsoft.com/powershell -i -t --overrides='{ "apiVersion": "apps/v1beta1", "spec":{"template":{"spec": {"nodeSelector":{"beta.kubernetes.io/os":"linux"}}}}}'
$feedUrl = "https://archive.org/services/collection-rss.php?collection=apple_ii_library_4am" | |
# Issue - this only seems to get latest 50 entries | |
$feedContents = ([xml](Invoke-WebRequest -UseBasicParsing -Uri $feedUrl).Content).rss.channel.item | |
Write-Host Found $feedContents.Count items | |
$r = [regex]"([^/]+)/?$" # Thanks https://stackoverflow.com/a/8798550 | |
$feedContents | ForEach-Object { | |
$identifier = $r.Match($_.link).Value | |
$fileList = [xml](Invoke-WebRequest -UseBasicParsing -Uri "https://archive.org/download/$($identifier)/$($identifier)_files.xml") |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: iis-1709 | |
labels: | |
app: iis-1709 | |
spec: | |
replicas: 1 | |
template: | |
metadata: |
This release supports more of Kubernetes API for pods and containers on Windows:
- Metrics: Pod, Container, Log filesystem
- Security contexts: run_as_user #64009
- Storage: Local persistent volumes #62012 and fstype for Azure disk #61267
Improvements in Windows Server version 1803 also bring new storage functionality to Kubernetes v1.11
- Volume mounts for ConfigMap and Secret
- Flexvolume plugins for SMB and iSCSI storage are also available out-of-tree at Microsoft/K8s-Storage-Plugins
Version: 18.04.0-ce-win62 (17153) | |
Channel: microsoft-build-2018 | |
Sha1: f2294279c791c16440ab36c50d9bd7b1c439ad83 | |
Started on: 2018/04/18 00:23:17.362 | |
Resources: C:\Program Files\Docker\Docker\Resources | |
OS: Windows 10 Pro | |
Edition: Professional | |
Id: 1709 | |
Build: 16299 | |
BuildLabName: 16299.15.amd64fre.rs3_release.170928-1534 |
# vim giblets | |
*.swp | |
*.swo | |
*~ | |
# if you run the sample step by step, these will contain secrets | |
*secret.json | |
# output from acs-engine | |
_output/ | |
translations/ |