commit | 7bf85fb96e4566e2f5c5146e6e6dd18d4ab83594 | [log] [tgz] |
---|---|---|
author | dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | Wed Feb 15 03:09:19 2023 +0000 |
committer | GitHub <noreply@github.com> | Wed Feb 15 03:09:19 2023 +0000 |
tree | 8551cdde3d4c84146f38290e7ee5ddc6176b5b43 | |
parent | 53a75e477bcc4667712152bac4ddb0cf5cb60869 [diff] |
build(deps): bump github.com/prometheus/client_golang Bumps [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang) from 1.11.0 to 1.11.1. - [Release notes](https://github.com/prometheus/client_golang/releases) - [Changelog](https://github.com/prometheus/client_golang/blob/main/CHANGELOG.md) - [Commits](https://github.com/prometheus/client_golang/compare/v1.11.0...v1.11.1) --- updated-dependencies: - dependency-name: github.com/prometheus/client_golang dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com>
Project status: alpha1
Current API version: v1alpha1
ds
kubectl create namespace ds
If you don't have a running database, you can run
kubectl apply -f config/ds/postgreSQL
to create a demo database, note that this is only for demonstration, DO NOT use it in production environment. You need to replace the hostPath.path
in postgres-pv.yaml
if you don't have a directory /var/lib/data
.
Connect to PostgreSQL and initialize the database schema by executing dolphinscheduler/dolphinscheduler-dao/src/main/resources/sql/dolphinscheduler_postgresql.sql
.
If you don't have a running zookeeper, the demo doployment file is in config/ds/zookeeper
,
kubectl apply -f config/ds/zookeeper
If you have pv and pvc, you can config it in config/sameples
.
Or you can create it with config/ds/ds-pv.yaml
and config/ds/ds-pvc.yaml
. Notice to replace the hostPath.path
in ds-pv.yaml
.
And you can mount the lib in dolphinscheduler /opt/soft
in config/samples/ds_v1alpha1_dsworker.yaml with paramter named lib_pvc_name
Mount the logs in /opt/dolphinscheduler/logs
with the pvcname named log_pvc_name
.
kubectl get dsworkers.ds.apache.dolphinscheduler.dev -n ds
kubectl explain dsmaster
Replace the database config and zookeeper config paramters in config/samples/
.
Replace the nodeport in config/samples/ds_v1alpha1_api.yaml
Install CRDs and controller
export IMG=ghcr.io/apache/dolphinscheduler-operator:latest make build && make manifests && make install && make deploy
cd config/samples kubectl apply -f ds_v1alpha1_dsalert.yaml kubectl apply -f ds_v1alpha1_dsapi.yaml -f ds_v1alpha1_dsmaster.yaml -f ds_v1alpha1_dsworker.yaml