Skip to content

Commit

Permalink
All src/deploy scripts must be updated to the 2.11.4 release. (#5827)
Browse files Browse the repository at this point in the history
This is a followup activity for the 2.11.3 release of Spring Cloud Data Flow
This inclues the update of the pro to 1.6.3
  • Loading branch information
cppwfs authored May 24, 2024
1 parent bbff654 commit afe5760
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions src/deploy/README.html
Original file line number Diff line number Diff line change
Expand Up @@ -1239,8 +1239,8 @@ <h6 id="_configure_database">Configure Database</h6>
</div>
<div class="listingblock">
<div class="content">
<pre class="CodeRay highlight"><code data-lang="shell">export DATAFLOW_VERSION=2.11.3-SNAPSHOT
export SKIPPER_VERSION=2.11.3-SNAPSHOT</code></pre>
<pre class="CodeRay highlight"><code data-lang="shell">export DATAFLOW_VERSION=2.11.4-SNAPSHOT
export SKIPPER_VERSION=2.11.4-SNAPSHOT</code></pre>
</div>
</div>
<div class="paragraph">
Expand Down
2 changes: 1 addition & 1 deletion src/deploy/images/pull-composed-task-runner.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
if [ "$DATAFLOW_VERSION" = "" ]; then
DATAFLOW_VERSION=2.11.3-SNAPSHOT
DATAFLOW_VERSION=2.11.4-SNAPSHOT
fi
docker pull "springcloud/spring-cloud-dataflow-composed-task-runner:$DATAFLOW_VERSION"
2 changes: 1 addition & 1 deletion src/deploy/images/pull-dataflow.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
if [ "$DATAFLOW_VERSION" = "" ]; then
DATAFLOW_VERSION=2.11.3-SNAPSHOT
DATAFLOW_VERSION=2.11.4-SNAPSHOT
fi
docker pull "springcloud/spring-cloud-dataflow-server:$DATAFLOW_VERSION"
2 changes: 1 addition & 1 deletion src/deploy/images/pull-grafana.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
if [ "$DATAFLOW_VERSION" = "" ]; then
DATAFLOW_VERSION=2.11.3-SNAPSHOT
DATAFLOW_VERSION=2.11.4-SNAPSHOT
fi
docker pull "springcloud/spring-cloud-dataflow-grafana-prometheus:$DATAFLOW_VERSION"
2 changes: 1 addition & 1 deletion src/deploy/images/pull-single-step-batch-job.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
if [ "$DATAFLOW_VERSION" = "" ]; then
DATAFLOW_VERSION=2.11.3-SNAPSHOT
DATAFLOW_VERSION=2.11.4-SNAPSHOT
fi
docker pull "springcloud/spring-cloud-dataflow-single-step-batch-job:$DATAFLOW_VERSION"
2 changes: 1 addition & 1 deletion src/deploy/images/pull-skipper.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash
if [ "$SKIPPER_VERSION" = "" ]; then
SKIPPER_VERSION=2.11.3-SNAPSHOT
SKIPPER_VERSION=2.11.4-SNAPSHOT
fi

docker pull "springcloud/spring-cloud-skipper-server:$SKIPPER_VERSION"
8 changes: 4 additions & 4 deletions src/deploy/k8s/deploy-scdf.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ if [ "$DATAFLOW_PRO_VERSION" = "" ]; then
DATAFLOW_PRO_VERSION=1.6.1-SNAPSHOT
fi
if [ "$DATAFLOW_VERSION" = "" ]; then
export DATAFLOW_VERSION=2.11.3-SNAPSHOT
export DATAFLOW_VERSION=2.11.4-SNAPSHOT
fi
if [ "$SKIPPER_VERSION" = "" ]; then
export SKIPPER_VERSION=2.11.3-SNAPSHOT
export SKIPPER_VERSION=2.11.4-SNAPSHOT
fi

case $BROKER in
Expand Down Expand Up @@ -85,11 +85,11 @@ if [ "$USE_PRO" = "" ]; then
fi

if [ "$DATAFLOW_VERSION" = "" ]; then
DATAFLOW_VERSION=2.11.3-SNAPSHOT
DATAFLOW_VERSION=2.11.4-SNAPSHOT
fi

if [ "$SKIPPER_VERSION" = "" ]; then
SKIPPER_VERSION=2.11.3-SNAPSHOT
SKIPPER_VERSION=2.11.4-SNAPSHOT
fi

YAML_PATH=$(realpath $SCDIR/yaml)
Expand Down
4 changes: 2 additions & 2 deletions src/deploy/k8s/update-scdf.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ if [ "$DATAFLOW_PRO_VERSION" = "" ]; then
DATAFLOW_PRO_VERSION=1.6.1-SNAPSHOT
fi
if [ "$DATAFLOW_VERSION" = "" ]; then
export DATAFLOW_VERSION=2.11.3-SNAPSHOT
export DATAFLOW_VERSION=2.11.4-SNAPSHOT
fi
if [ "$SKIPPER_VERSION" = "" ]; then
export SKIPPER_VERSION=2.11.3-SNAPSHOT
export SKIPPER_VERSION=2.11.4-SNAPSHOT
fi

case $BROKER in
Expand Down
6 changes: 3 additions & 3 deletions src/deploy/versions.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
scdf-type:
oss:
release: '2.11.3'
release: '2.11.4'
snapshot: '2.11.4-SNAPSHOT'
milestone: '2.11.0-RC1'
maintenance-snapshot: '2.10.4-SNAPSHOT'
pro:
release: '1.6.2'
release: '1.6.3'
snapshot: '1.6.3-SNAPSHOT'
maintenance-snapshot: '1.5.4-SNAPSHOT'
default:
scdf-type: 'oss'
version: 'release'
package-version: '2.11.3'
package-version: '2.11.4'

0 comments on commit afe5760

Please sign in to comment.