Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Valid8or plugin vsphere charts #56

Merged
merged 8 commits into from
Oct 10, 2023
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ The valid8or repository is fairly minimal - all the heavy lifting is done by the
Plugins:
- [AWS](https://github.com/spectrocloud-labs/valid8or-plugin-aws)
- [Network](https://github.com/spectrocloud-labs/valid8or-plugin-network)
- [vSphere](https://github.com/spectrocloud-labs/valid8or-plugin-vsphere)

## Installation
```bash
Expand Down
63 changes: 63 additions & 0 deletions chart/valid8or/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,69 @@ plugins:
accessKeyId: ""
secretAccessKey: ""
sessionToken: ""
- chart:
name: valid8or-plugin-vsphere
repository: "https://spectrocloud-labs.github.io/valid8or-plugin-vsphere"
version: "v0.0.8"
values: |-
controllerManager:
kubeRbacProxy:
args:
- --secure-listen-address=0.0.0.0:8443
- --upstream=http://127.0.0.1:8080/
- --logtostderr=true
- --v=0
containerSecurityContext:
allowPrivilegeEscalation: false
capabilities:
drop:
- ALL
image:
repository: gcr.io/kubebuilder/kube-rbac-proxy
tag: v0.14.1
resources:
limits:
cpu: 500m
memory: 128Mi
requests:
cpu: 5m
memory: 64Mi
manager:
args:
- --health-probe-bind-address=:8081
- --leader-elect
containerSecurityContext:
allowPrivilegeEscalation: false
capabilities:
drop:
- ALL
image:
repository: quay.io/spectrocloud-labs/valid8or-plugin-vsphere
tag: v0.0.8
resources:
limits:
cpu: 500m
memory: 128Mi
requests:
cpu: 10m
memory: 64Mi
replicas: 1
serviceAccount:
annotations: {}
kubernetesClusterDomain: cluster.local
metricsService:
ports:
- name: https
port: 8443
protocol: TCP
targetPort: https
type: ClusterIP
auth:
secretName: vsphere-creds
username: ""
password: ""
vcenterServer: ""
insecureSkipVerify: ""
- chart:
name: valid8or-plugin-network
repository: "https://spectrocloud-labs.github.io/valid8or-plugin-network"
Expand Down