Skip to content

Commit edf6829

Browse files
committed
Updating version to 2.5.7
1 parent cb00395 commit edf6829

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

airflow/plugins/unity_sps_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
# Note: each Pod is assigned the same label to assure that (via the anti-affinity requirements)
1818
# two Pods with the same label cannot run on the same Node
19-
SPS_DOCKER_CWL_IMAGE = "ghcr.io/unity-sds/unity-sps/sps-docker-cwl:2.5.6"
19+
SPS_DOCKER_CWL_IMAGE = "ghcr.io/unity-sds/unity-sps/sps-docker-cwl:2.5.7"
2020

2121
NODE_POOL_DEFAULT = "airflow-kubernetes-pod-operator"
2222
NODE_POOL_HIGH_WORKLOAD = "airflow-kubernetes-pod-operator-high-workload"

terraform-unity/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,10 +188,10 @@ terraform apply -no-color 2>&1 | tee apply_output.txt
188188

189189
| Name | Description | Type | Default | Required |
190190
|------|-------------|------|---------|:--------:|
191-
| <a name="input_airflow_docker_images"></a> [airflow\_docker\_images](#input\_airflow\_docker\_images) | Docker images for the associated Airflow services. | <pre>object({<br> airflow = object({<br> name = string<br> tag = string<br> })<br> })</pre> | <pre>{<br> "airflow": {<br> "name": "ghcr.io/unity-sds/unity-sps/sps-airflow",<br> "tag": "2.5.6"<br> }<br>}</pre> | no |
191+
| <a name="input_airflow_docker_images"></a> [airflow\_docker\_images](#input\_airflow\_docker\_images) | Docker images for the associated Airflow services. | <pre>object({<br> airflow = object({<br> name = string<br> tag = string<br> })<br> })</pre> | <pre>{<br> "airflow": {<br> "name": "ghcr.io/unity-sds/unity-sps/sps-airflow",<br> "tag": "2.5.7"<br> }<br>}</pre> | no |
192192
| <a name="input_airflow_webserver_password"></a> [airflow\_webserver\_password](#input\_airflow\_webserver\_password) | The password for the Airflow webserver and UI. | `string` | n/a | yes |
193193
| <a name="input_airflow_webserver_username"></a> [airflow\_webserver\_username](#input\_airflow\_webserver\_username) | The username for the Airflow webserver and UI. | `string` | `"admin"` | no |
194-
| <a name="input_dag_catalog_repo"></a> [dag\_catalog\_repo](#input\_dag\_catalog\_repo) | Git repository that stores the catalog of Airflow DAGs. | <pre>object({<br> url = string<br> ref = string<br> dags_directory_path = string<br> })</pre> | <pre>{<br> "dags_directory_path": "airflow/dags",<br> "ref": "2.5.6",<br> "url": "https://github.com/unity-sds/unity-sps.git"<br>}</pre> | no |
194+
| <a name="input_dag_catalog_repo"></a> [dag\_catalog\_repo](#input\_dag\_catalog\_repo) | Git repository that stores the catalog of Airflow DAGs. | <pre>object({<br> url = string<br> ref = string<br> dags_directory_path = string<br> })</pre> | <pre>{<br> "dags_directory_path": "airflow/dags",<br> "ref": "develop",<br> "url": "https://github.com/unity-sds/unity-sps.git"<br>}</pre> | no |
195195
| <a name="input_deployment_name"></a> [deployment\_name](#input\_deployment\_name) | The name of the deployment. | `string` | `""` | no |
196196
| <a name="input_helm_charts"></a> [helm\_charts](#input\_helm\_charts) | Helm charts for the associated services. | <pre>map(object({<br> repository = string<br> chart = string<br> version = string<br> }))</pre> | <pre>{<br> "airflow": {<br> "chart": "airflow",<br> "repository": "https://airflow.apache.org",<br> "version": "1.15.0"<br> },<br> "keda": {<br> "chart": "keda",<br> "repository": "https://kedacore.github.io/charts",<br> "version": "v2.15.1"<br> }<br>}</pre> | no |
197197
| <a name="input_installprefix"></a> [installprefix](#input\_installprefix) | The install prefix for the service area (unused) | `string` | `""` | no |

terraform-unity/variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ variable "airflow_docker_images" {
7373
default = {
7474
airflow = {
7575
name = "ghcr.io/unity-sds/unity-sps/sps-airflow"
76-
tag = "2.5.6"
76+
tag = "2.5.7"
7777
}
7878
}
7979
}
@@ -336,7 +336,7 @@ variable "dag_catalog_repo" {
336336
})
337337
default = {
338338
url = "https://github.com/unity-sds/unity-sps.git"
339-
ref = "2.5.6"
339+
ref = "develop"
340340
dags_directory_path = "airflow/dags"
341341
}
342342
}

0 commit comments

Comments
 (0)