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
| {{- range $job := .Values.jobs }} | |
| --- | |
| apiVersion: batch/v1beta1 | |
| kind: CronJob | |
| metadata: | |
| name: {{ $job.name }} | |
| spec: | |
| concurrencyPolicy: {{ $job.allowConcurrentRuns | default "false" }} | |
| failedJobsHistoryLimit: {{ $job.history.failure }} | |
| jobTemplate: |
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: apps/v1 | |
| kind: Deployment | |
| metadata: | |
| name: vtiger | |
| spec: | |
| replicas: 1 | |
| selector: | |
| matchLabels: | |
| role: vtiger | |
| template: |
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: PersistentVolume | |
| metadata: | |
| name: mattermostconfig | |
| spec: | |
| capacity: | |
| storage: 20Gi | |
| accessModes: | |
| - ReadWriteMany | |
| nfs: |
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
| rm -rf ~/.kube | |
| gcloud container clusters get-credentials andromeda --zone us-west1-a | |
| kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v1.10.1/src/deploy/recommended/kubernetes-dashboard.yaml | |
| cat <<EOF | kubectl apply -f - | |
| apiVersion: v1 | |
| kind: ServiceAccount | |
| metadata: | |
| name: admin-user |
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
| # Ubuntu Pet | |
| Host cg-ubuntu | |
| HostName ip_address | |
| ForwardAgent yes | |
| User ubuntu | |
| StrictHostKeyChecking no | |
| IdentityFile ./.ssh/og_id_rsa | |
| # In *NIX | |
| Host jumpbox |