Use python3 when present

Some newer images include python3 but not python. This change will
alias python to python3 when the executable is found.

Change-Id: I752a265c67887b6e6b2389bf4009bdbf8e2aed09
This commit is contained in:
Ritchie, Frank (fr801x) 2022-03-31 12:16:56 -05:00
parent 95a754a2c4
commit 3ce8d71483
3 changed files with 6 additions and 1 deletions

View File

@ -15,7 +15,7 @@ apiVersion: v1
appVersion: v7.6.2
description: OpenStack-Helm ElasticSearch
name: elasticsearch
version: 0.2.15
version: 0.2.16
home: https://www.elastic.co/
sources:
- https://github.com/elastic/elasticsearch

View File

@ -15,6 +15,10 @@ limitations under the License.
set -ex
if [[ $(which python3) ]]; then
alias python=python3
fi
function create_test_index () {
index_result=$(curl ${CACERT_OPTION} -K- <<< "--user ${ELASTICSEARCH_USERNAME}:${ELASTICSEARCH_PASSWORD}" \
-XPUT "${ELASTICSEARCH_ENDPOINT}/test_index?pretty" -H 'Content-Type: application/json' -d'

View File

@ -25,4 +25,5 @@ elasticsearch:
- 0.2.13 Update htk requirements
- 0.2.14 Fix cronjob rendering
- 0.2.15 Fix elasticsearch-data shutdown
- 0.2.16 Use python3 for helm tests when possible
...