bitnami-containers/.vib/common/goss/templates/check-app-version.yaml

20 lines
591 B
YAML

# Copyright Broadcom, Inc. All Rights Reserved.
# SPDX-License-Identifier: APACHE-2.0
########################
# Checks asset version via its binary,
# independently of the output been shown through stdout or stderr
# Needed vars:
# - .Vars.version.bin_name (String)
# - .Vars.version.flag (String)
########################
command:
check-app-version:
exec: {{ .Vars.version.bin_name }} {{ .Vars.version.flag }} 2>&1
exit-status: 0
{{- if hasKey .Vars.version "timeout" }}
timeout: {{ .Vars.version.timeout }}
{{- end }}
stdout:
- "{{ .Env.APP_VERSION }}"