Skip to content

Commit

Permalink
fix: Lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
oodamien committed Apr 25, 2024
1 parent fc070d9 commit 47d83f0
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions content/documentation/pages/1-installation/3-kubernetes/2-carvel.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@ description: 'Installation using Carvel'

Spring Cloud Data Flow offers a Carvel Package for deploying the Spring Cloud Data Flow server and Skipper to a Kubernetes Cluster.


The steps are:
* Prepare the cluster for deployment by installing the Carvel components required.
* Creating a namespace and adding the carvel package to the namespace.
* Creating a values file with database and broker properties.
* Optionally you can use provided scripts for deploying a broker, database and prometheus. These scripts will update the values file with the correct credentials.
* Deploy the Spring Cloud Data Flow carvel package.

- Prepare the cluster for deployment by installing the Carvel components required.
- Creating a namespace and adding the carvel package to the namespace.
- Creating a values file with database and broker properties.
- Optionally you can use provided scripts for deploying a broker, database and prometheus. These scripts will update the values file with the correct credentials.
- Deploy the Spring Cloud Data Flow carvel package.

For local minikube or kind cluster you can use: [Configure Kubernetes for local development or testing](https://docs.spring.io/spring-cloud-dataflow/docs/current/reference/htmlsingle/#local-k8s-development), and follow the instructions until the section _Deploy Spring Cloud Data Flow_

Detail instructions on the Carvel deployment can be found in the [Reference Guide](https://docs.spring.io/spring-cloud-dataflow/docs/current/reference/htmlsingle/#configuration-carvel).
Detail instructions on the Carvel deployment can be found in the [Reference Guide](https://docs.spring.io/spring-cloud-dataflow/docs/current/reference/htmlsingle/#configuration-carvel).

## Example Values file

Expand All @@ -38,11 +38,11 @@ scdf:
env:
# set values to false to disable features
- name: SPRING_CLOUD_DATAFLOW_FEATURES_STREAMS_ENABLED
value: "true"
value: 'true'
- name: SPRING_CLOUD_DATAFLOW_FEATURES_TASKS_ENABLED
value: "true"
value: 'true'
- name: SPRING_CLOUD_DATAFLOW_FEATURES_SCHEDULES_ENABLED
value: "true"
value: 'true'
database:
# Note service-name.namespace as hostname.
url: jdbc:mariadb://mariadb.mariadb/dataflow
Expand All @@ -67,7 +67,7 @@ scdf:
tag: 2.9.3
registry:
secret:
ref: "reg-creds-dockerhub"
ref: 'reg-creds-dockerhub'
feature:
monitoring:
grafana:
Expand Down

0 comments on commit 47d83f0

Please sign in to comment.