Skip to content

Commit 3fb78ae

Browse files
committed
Merge remote-tracking branch 'origin/master' into propagate-annotations
2 parents 4da7be2 + cab74c4 commit 3fb78ae

File tree

101 files changed

+3105
-1518
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

101 files changed

+3105
-1518
lines changed

.changes/header.tpl.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Changelog

.changes/unreleased/.gitkeep

Whitespace-only changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
kind: Added
2+
body: starting with this release, deploying to dockerhub (ydbplatform/ydb-kubernetes-operator)
3+
time: 2024-11-13T18:16:28.275365313+01:00
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
kind: Added
2+
body: 'added the ability to create metadata announce for customize dns domain (default:
3+
cluster.local)'
4+
time: 2024-11-18T22:28:10.452679+03:00
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
kind: Changed
2+
body: up CONTROLLER_GEN_VERSION to 0.16.5 and ENVTEST_VERSION to release-0.17
3+
time: 2024-11-18T22:25:37.274092+03:00
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
kind: Fixed
2+
body: e2e tests and unit tests flapped because of the race between storage finalizers and uninstalling operator helm chart
3+
time: 2024-11-13T21:45:12.19273022+01:00
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
kind: Security
2+
body: bump golang-jwt to v4.5.1 (by dependabot)
3+
time: 2024-11-18T22:24:33.337464+03:00

.changes/v0.5.31.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## v0.5.31 - 2024-11-04
2+
### Added
3+
* Initialized a changelog

.changes/v0.5.32.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## v0.5.32 - 2024-11-05
2+
### Fixed
3+
* Chart.yaml version is bumped up automatically when a new release PR is created

.changie.yaml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
changesDir: .changes
2+
unreleasedDir: unreleased
3+
headerPath: header.tpl.md
4+
changelogPath: CHANGELOG.md
5+
versionExt: md
6+
versionFormat: '## {{.Version}} - {{.Time.Format "2006-01-02"}}'
7+
kindFormat: '### {{.Kind}}'
8+
changeFormat: '* {{.Body}}'
9+
kinds:
10+
- label: Added
11+
auto: minor
12+
- label: Changed
13+
auto: major
14+
- label: Deprecated
15+
auto: minor
16+
- label: Removed
17+
auto: major
18+
- label: Fixed
19+
auto: patch
20+
- label: Security
21+
auto: patch
22+
newlines:
23+
afterChangelogHeader: 1
24+
beforeChangelogVersion: 1
25+
endOfVersion: 1
26+
envPrefix: CHANGIE_

.github/PULL_REQUEST_TEMPLATE.md

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
I hereby agree to the terms of the CLA available at: https://yandex.ru/legal/cla/?lang=en
2-
31
<!--- Please provide a general summary of your changes in the title above -->
42

53
## Pull request type

.github/scripts/check-work-copy-equals-to-committed.sh

-11
This file was deleted.

.github/scripts/format-all-go-code.sh

-22
This file was deleted.

.github/scripts/format-go-code.sh

-13
This file was deleted.

.github/scripts/is_autogenerated_file.sh

-10
This file was deleted.

.github/workflows/check-pr.yml

-95
This file was deleted.
+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
name: create-release-pr
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
create-release-pr:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: checkout
11+
uses: actions/checkout@v4
12+
13+
- name: batch-changes
14+
uses: miniscruff/changie-action@v2
15+
with:
16+
version: latest
17+
args: batch patch
18+
19+
- name: merge-changes
20+
uses: miniscruff/changie-action@v2
21+
with:
22+
version: latest
23+
args: merge
24+
25+
- name: print the latest version
26+
id: latest
27+
uses: miniscruff/changie-action@v2
28+
with:
29+
version: latest
30+
args: latest
31+
32+
- name: print the latest version without "v"
33+
id: latest-no-v
34+
uses: miniscruff/changie-action@v2
35+
with:
36+
version: latest
37+
args: latest --remove-prefix
38+
39+
- name: bump-chart-version
40+
run: |
41+
VERSION=${{ steps.latest-no-v.outputs.output }}
42+
sed -i "s/^appVersion:.*/appVersion: \"$VERSION\"/" ./deploy/ydb-operator/Chart.yaml
43+
sed -i "s/^version:.*/version: \"$VERSION\"/" ./deploy/ydb-operator/Chart.yaml
44+
45+
- name: Create Pull Request
46+
uses: peter-evans/create-pull-request@v7
47+
with:
48+
title: Release ${{ steps.latest.outputs.output }}
49+
branch: release/${{ steps.latest.outputs.output }}
50+
commit-message: Release ${{ steps.latest.outputs.output }}
51+
token: ${{ github.token }}

0 commit comments

Comments
 (0)