Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sync with upstream and fix for k8s 1.25 #3

Open
wants to merge 36 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
6d5fd5b
When I pulled the image, an error occurred , so found out that the na…
yoonjk Mar 25, 2020
bc75a82
Add support to run custom scripts (Fix merge conflict with the latest…
amit-k-yadav Apr 2, 2020
c5d157e
cp-kafka-rest: add customEnv (#420)
jkt628 May 1, 2020
bc14da0
Update latest to 5.5.0 Images (#418)
andrewegel May 11, 2020
15e3b73
fix(JMX exporter): Optimize the metric collection (#428)
srolija May 11, 2020
25f002d
[5.5.0] deploying packaged chart 0.5.0 for CP 5.5.0
gAmUssA May 11, 2020
38875e2
Updated and published docs (#429)
gAmUssA May 11, 2020
3da8462
Regression: put index rst back
gAmUssA May 12, 2020
596dd55
fix: Fix the JMX whitespace regression (#433)
srolija May 18, 2020
a8874a4
Serviceport in docs wrong (#441)
carlioth Jun 4, 2020
5b13b07
Fix JMX metrics not enabled correctly (#452)
wongelz Jul 27, 2020
3434a1e
Expose the jmx port in service, when jmx is enabled. (#261)
Sep 11, 2020
18a4242
Fixed JMX_PORT env variable in Kafka REST Proxy
adambarreiro Oct 21, 2020
7b15e2a
Add possibility to set securityContext for Kafka and Zookeeper contai…
sturman Oct 27, 2020
15a5ea4
Add bumpversion config
andrewegel Nov 17, 2020
b95d2fc
Bump Version: 5.5.0 → 6.0.0
andrewegel Nov 17, 2020
94ed530
Bump Version: 6.0.0 → 6.0.1
andrewegel Dec 1, 2020
1d9dc18
Validated Cp 6.0.1 release
gAmUssA Dec 9, 2020
ced4f67
Add bump2version and bump to 600 (#477)
gAmUssA Dec 9, 2020
d249bba
fixed values.yaml
FIAV1 Dec 10, 2020
bbc2dfd
Merge pull request #483 from FIAV1/master
gAmUssA Dec 10, 2020
37e2ce6
Releasing fix
gAmUssA Dec 10, 2020
9cab985
Merge pull request #484 from confluentinc/fix/cp-6.0.1-1
gAmUssA Dec 10, 2020
b6c4597
Merge pull request #470 from adambarreiro/master
gAmUssA Dec 29, 2020
47f7666
Add `affinity` customization
kppullin-nt Jan 28, 2021
c687428
Merge pull request #492 from kppullin/affinity-config
gAmUssA Feb 1, 2021
6785887
Fix timeout in Kafka test
SoerenHenning Apr 12, 2021
44b0818
Merge pull request #518 from SoerenHenning/fix-test-timeout
gAmUssA Apr 12, 2021
f50a088
Bump Version: 6.0.1 → 6.1.0 (#495)
andrewegel Apr 12, 2021
c2c5127
Revert "Bump Version: 6.0.1 → 6.1.0 (#495)" (#519)
gAmUssA Apr 12, 2021
8cf487e
[proper] release cp 6.1 (#520)
gAmUssA Apr 13, 2021
3ffbdf9
[cp-schema-registry] add support for security context (#525)
OuesFa Apr 23, 2021
2e5f624
Update Jenkinsfile (#592)
jkao97 Mar 17, 2022
524608d
Introduce Pull Request Reviewers (#589)
lyoung-confluent Apr 1, 2022
b550173
Merge remote-tracking branch 'upstream/master'
wodity Feb 9, 2023
dda5ecc
Use policy/v1 for poddisruptionbudget for k8s 1.25 compatibility
wodity Feb 9, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
[bumpversion]
current_version = 6.1.0
commit = true
message = Bump Version: {current_version} → {new_version}
tag = false
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
serialize =
{major}.{minor}.{patch}

[bumpversion:glob:**/values.yaml]

[bumpversion:glob:examples/*.yaml]

[bumpversion:glob:**/README.md]
2 changes: 2 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# See go/codeowners - automatically generated for confluentinc/cp-helm-charts:
* @confluentinc/cluster-management
2 changes: 1 addition & 1 deletion .helmignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@
*.tgz
scripts/
screenshots/
docs/index.html
docs/
2 changes: 1 addition & 1 deletion Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ apiVersion: v1
appVersion: "1.0"
description: A Helm chart for Confluent Platform Community Edition
name: cp-helm-charts
version: 0.4.1
version: 0.6.1
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
def config = jobConfig {
slackChannel = 'tools-notifications'
slackChannel = 'devprod-notifications'
}

def job = {
Expand Down
Loading