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
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDgqVxNbkwVm4Z1hwZm11cX9KZwFxcu05EAPGX6nUJJPifgilb0xrSIorhS0Ulbv0lTIDRrqQzHqlVFiVWD0Wfszi4CYAxw2DqxEdA+GVtGt09lAlR6HjBjL3PkMrIM8CgMhK4kARdRP1KpgrmWV3C+RDHwVneCUvE7X81BJGRFFCSzbFLpP65y/wRwobk76dDg44vS9VVFix9l/weY0mJMzwFXYmwWcgUKRc8aIEEIizCL1pHycufuKCZAfbt8ga4C0JLRKFi1lKv5Omwv1etCpqBOPwVN33CkM86uaMHPCFVIrd9PjisLpAi+t0GUkAtlmra2AJgxDE20uE/xBfGL calvin@calvinh-ws |
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
application: vsphere-integrator | |
application-config: | |
trust: | |
default: false | |
description: Does this application have access to trusted credentials | |
source: user | |
type: bool | |
value: true | |
charm: vsphere-integrator | |
settings: |
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
description: A highly-available, production-grade Kubernetes cluster. | |
series: bionic | |
machines: | |
#Etcd, master | |
"0": | |
constraints: cores=4 mem=16G root-disk=50G | |
zone: IDC-HVHV-VMW-06 | |
"1": | |
constraints: cores=4 mem=16G root-disk=50G | |
zone: IDC-HVHV-VMW-06 |
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
Model Controller Cloud/Region Version SLA Timestamp | |
default copa-IDC copa/IDC 2.4.6 unsupported 15:14:39Z | |
App Version Status Scale Charm Store Rev OS Notes | |
apache2 waiting 0/1 apache2 jujucharms 26 ubuntu | |
easyrsa waiting 0/1 easyrsa jujucharms 117 ubuntu | |
elasticsearch waiting 0/1 elasticsearch jujucharms 31 ubuntu | |
etcd waiting 0/3 etcd jujucharms 209 ubuntu | |
filebeat waiting 0 filebeat jujucharms 19 ubuntu | |
flannel waiting 0 flannel jujucharms 146 ubuntu |
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
#!/bin/bash | |
# By default, juju will place across zones | |
# But IDC-HVHV-VMW-05 is used for production | |
# So we make sure everything goes into IDC-HVHV-VMW-06 | |
ZONE="IDC-HVHV-VMW-06" | |
CHARM_CONFIG="bundles/cdk-charm-config.yaml" | |
DATASTORE="IDC-VNX-HYBRID-01" | |
# bootstrap controller |
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
description: A highly-available, production-grade Kubernetes cluster. | |
series: bionic | |
services: | |
easyrsa: | |
annotations: | |
gui-x: '450' | |
gui-y: '550' | |
charm: cs:~containers/easyrsa-114 | |
constraints: root-disk=8G | |
num_units: 1 |
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: rbac.authorization.k8s.io/v1 | |
kind: ClusterRole | |
metadata: | |
name: prometheus | |
rules: | |
- apiGroups: ["*"] | |
resources: | |
- nodes | |
- nodes/proxy |
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: storage.k8s.io/v1 | |
kind: StorageClass | |
metadata: | |
name: default | |
annotations: | |
storageclass.kubernetes.io/is-default-class: "true" | |
provisioner: kubernetes.io/cinder |
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: PersistentVolumeClaim | |
metadata: | |
name: test-storage-claim | |
spec: | |
storageClassName: default | |
accessModes: | |
- ReadWriteOnce | |
resources: |
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
--- | |
series: xenial | |
description: A highly-available, production-grade Kubernetes cluster. | |
services: | |
easyrsa: | |
annotations: | |
gui-x: '450' | |
gui-y: '550' | |
charm: cs:~containers/easyrsa-114 | |
num_units: 1 |