This repository has been archived by the owner on Oct 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into v2.0.x
- Loading branch information
Showing
34 changed files
with
540 additions
and
116 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,19 @@ | ||
apiVersion: v1 | ||
description: A Helm chart for cf-operator, the k8s operator for deploying BOSH releases | ||
name: cf-operator | ||
version: 0.0.1 | ||
version: x.x.x | ||
appVersion: x.x.x | ||
description: A Helm chart for cf-operator, the k8s operator for deploying BOSH releases | ||
home: https://github.com/cloudfoundry-incubator/cf-operator | ||
icon: https://cloudfoundry-incubator.github.io/quarks-helm/logo.png | ||
keywords: | ||
- cloudfoundry | ||
- bosh | ||
- quarks | ||
- deployment | ||
sources: | ||
- https://github.com/cloudfoundry-incubator/cf-operator | ||
- https://github.com/cloudfoundry-incubator/quarks-job | ||
- https://github.com/cfcontainerizationbot/cf-operator-base | ||
maintainers: | ||
- name: project-quarks | ||
email: [email protected] |
This file contains 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
This file contains 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
2 changes: 1 addition & 1 deletion
2
...m/cf-operator/templates/cluster_role.yaml → ...m/cf-operator/templates/cluster-role.yaml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{{- if .Values.global.rbacEnable }} | ||
{{- if .Values.global.rbac.create }} | ||
--- | ||
apiVersion: v1 | ||
kind: List | ||
|
This file contains 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
This file contains 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
File renamed without changes.
This file contains 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
This file contains 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
Binary file not shown.
This file contains 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
61 changes: 61 additions & 0 deletions
61
docs/examples/bosh-deployment/boshdeployment-with-implicit-in-explicit-variable.yaml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
--- | ||
apiVersion: v1 | ||
kind: Secret | ||
metadata: | ||
name: nats-deployment.var-system-domain | ||
type: Opaque | ||
stringData: | ||
value: foo.com | ||
--- | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: nats-manifest | ||
data: | ||
manifest: | | ||
--- | ||
name: nats-deployment | ||
releases: | ||
- name: nats | ||
version: "26" | ||
url: docker.io/cfcontainerization | ||
stemcell: | ||
os: opensuse-42.3 | ||
version: 30.g9c91e77-30.80-7.0.0_257.gb97ced55 | ||
instance_groups: | ||
- name: nats | ||
instances: 1 | ||
jobs: | ||
- name: nats | ||
release: nats | ||
properties: | ||
nats: | ||
user: admin | ||
password: ((nats_password)) | ||
ca: ((nats_ca.certificate)) | ||
variables: | ||
- name: nats_password | ||
type: password | ||
- name: nats_ca | ||
type: certificate | ||
options: | ||
is_ca: true | ||
common_name: routerCA | ||
- name: nats_cert | ||
type: certificate | ||
options: | ||
ca: nats_ca | ||
common_name: routerSSL | ||
alternative_names: | ||
- "((system_domain))" | ||
- "*.((system_domain))" | ||
--- | ||
apiVersion: quarks.cloudfoundry.org/v1alpha1 | ||
kind: BOSHDeployment | ||
metadata: | ||
name: nats-deployment | ||
spec: | ||
manifest: | ||
name: nats-manifest | ||
type: configmap |
This file contains 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
Oops, something went wrong.