
Also update chart_version.sh script which counts the number of commits since the BASE_VERSION if BASE_VERSION tag is found. If the tag doesn't exist it counts the number of commits since the beginning. So when we use for example 2025.1.0 as the BASE_VERSION but the tag 2025.1.0 is not yet created the version of the e.g. nova chart will be calculated as like 2025.1.563+<sha> and then when we create tag the nova version will be 2025.1.0+<sha> which is undesired. Lets use BASE_VERSION-<sha> if the tag is not found. Change-Id: I032e8269ab17b490898d190adaec5c282e96fa88
30 lines
938 B
YAML
30 lines
938 B
YAML
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
---
|
|
apiVersion: v2
|
|
appVersion: v14.5
|
|
description: OpenStack-Helm PostgreSQL
|
|
name: postgresql
|
|
version: 2025.1.0
|
|
home: https://www.postgresql.org
|
|
sources:
|
|
- https://github.com/postgres/postgres
|
|
- https://opendev.org/openstack/openstack-helm
|
|
maintainers:
|
|
- name: OpenStack-Helm Authors
|
|
dependencies:
|
|
- name: helm-toolkit
|
|
repository: file://../helm-toolkit
|
|
version: ">= 0.1.0"
|
|
...
|