| Function | Shortcut |
|---|---|
| New Tab | ⌘ + T |
| Close Tab or Window | ⌘ + W (same as many mac apps) |
| Go to Tab | ⌘ + Number Key (ie: ⌘2 is 2nd tab) |
| Go to Split Pane by Direction | ⌘ + Option + Arrow Key |
| Cycle iTerm Windows | ⌘ + backtick (true of all mac apps and works with desktops/mission control) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| apiVersion: v1 | |
| kind: Secret | |
| metadata: | |
| name: github-ssh-creds | |
| namespace: shared-services | |
| labels: | |
| argocd.argoproj.io/secret-type: repository | |
| stringData: | |
| url: [email protected]:roman-hds/argo-demo.git | |
| sshPrivateKey: | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # macOS | |
| brew install kubeseal | |
| # Linux | |
| wget https://github.com/bitnami-labs/sealed-secrets/releases/download/v0.16.0/kubeseal-linux-amd64 -O kubeseal | |
| sudo install -m 755 kubeseal /usr/local/bin/kubeseal |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| dex: | |
| enabled: false | |
| server: | |
| extraArgs: | |
| - --insecure | |
| additionalApplications: | |
| - name: argo-demo | |
| namespace: shared-services |