-
Notifications
You must be signed in to change notification settings - Fork 227
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use Pulsar 4.0.0 image, bump chart version to 3.7.0, kube-prometheus-…
…stack to 65.x (#542) * Use Pulsar 4.0.0 image, bump chart version to 3.7.0 * Bump kube-prometheus-stack to 65.x.x * Remove testing with latest and test with previous LTS version - run kube-prometheus-stack test with previous LTS version since the older chart version doesn't support Pulsar 4.0.0 image * Fix passing "--values" to helm command * Move ci runner config to a script * Attempt to fix pulsar-manager-cluster-initialize
- Loading branch information
Showing
10 changed files
with
101 additions
and
80 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,4 +17,4 @@ | |
# under the License. | ||
# | ||
|
||
defaultPulsarImageTag: 3.3.2 | ||
defaultPulsarImageTag: 3.0.7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
#!/bin/bash | ||
# this script is used to install tools for the GitHub Actions CI runner while debugging with ssh | ||
|
||
if [[ -z "${GITHUB_ACTIONS}" ]]; then | ||
echo "Error: This script is intended to run only in GitHub Actions environment" | ||
exit 1 | ||
fi | ||
|
||
cat >> $HOME/.bashrc <<'EOF' | ||
function use_kind_kubeconfig() { | ||
export KUBECONFIG=$(ls $HOME/kind/pulsar-ci-*/kubeconfig.yaml) | ||
} | ||
function kubectl() { | ||
# use kind environment's kubeconfig | ||
if [ -z "$KUBECONFIG" ]; then | ||
use_kind_kubeconfig | ||
fi | ||
command kubectl "$@" | ||
} | ||
function k9s() { | ||
# use kind environment's kubeconfig | ||
if [ -z "$KUBECONFIG" ]; then | ||
use_kind_kubeconfig | ||
fi | ||
# install k9s on the fly | ||
if [ ! -x /usr/local/bin/k9s ]; then | ||
echo "Installing k9s..." | ||
curl -L -s https://github.com/derailed/k9s/releases/download/v0.32.5/k9s_Linux_amd64.tar.gz | sudo tar xz -C /usr/local/bin k9s | ||
fi | ||
command k9s "$@" | ||
} | ||
alias k=kubectl | ||
EOF | ||
cat >> $HOME/.bash_profile <<'EOF' | ||
if [ -f ~/.bashrc ]; then | ||
source ~/.bashrc | ||
fi | ||
EOF |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,10 +18,10 @@ | |
# | ||
|
||
apiVersion: v2 | ||
appVersion: "3.0.7" | ||
appVersion: "4.0.0" | ||
description: Apache Pulsar Helm chart for Kubernetes | ||
name: pulsar | ||
version: 3.6.0 | ||
version: 3.7.0 | ||
kubeVersion: ">=1.23.0-0" | ||
home: https://pulsar.apache.org | ||
sources: | ||
|
@@ -33,6 +33,6 @@ maintainers: | |
email: [email protected] | ||
dependencies: | ||
- name: kube-prometheus-stack | ||
version: 59.x.x | ||
version: 65.x.x | ||
repository: https://prometheus-community.github.io/helm-charts | ||
condition: kube-prometheus-stack.enabled |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters