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

Update k8s apps to the latest version #502

Merged
merged 1 commit into from
Jan 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions stacks/ambassador/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ helm repo update > /dev/null
################################################################################
STACK="edge-stack"
CHART="datawire/edge-stack"
CHART_VERSION="7.3.2"
CHART_VERSION="8.7.2"
NAMESPACE="ambassador"

if [ -z "${MP_KUBERNETES}" ]; then
Expand All @@ -26,7 +26,7 @@ else
fi

# Before installing Ambassador 2.X itself, you must configure your Kubernetes cluster to support the getambassador.io/v3alpha1 and getambassador.io/v2 configuration resources. This is required.
kubectl apply -f https://app.getambassador.io/yaml/edge-stack/2.3.0/aes-crds.yaml
kubectl apply -f https://app.getambassador.io/yaml/edge-stack/3.7.2/aes-crds.yaml

helm upgrade "$STACK" "$CHART" \
--atomic \
Expand Down
2 changes: 1 addition & 1 deletion stacks/apache-pulsar/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ helm repo update > /dev/null
################################################################################
STACK="apache-pulsar"
CHART="apache/pulsar"
CHART_VERSION="3.0.0"
CHART_VERSION="3.1.0"
NAMESPACE="pulsar"

if [ -z "${MP_KUBERNETES}" ]; then
Expand Down
2 changes: 1 addition & 1 deletion stacks/cert-manager/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ helm repo update > /dev/null
################################################################################
STACK="cert-manager"
CHART="jetstack/cert-manager"
CHART_VERSION="1.11.0"
CHART_VERSION="1.13.3"
NAMESPACE="cert-manager"

if [ -z "${MP_KUBERNETES}" ]; then
Expand Down
2 changes: 1 addition & 1 deletion stacks/ingress-nginx/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ helm repo update > /dev/null
################################################################################
STACK="ingress-nginx"
CHART="ingress-nginx/ingress-nginx"
CHART_VERSION="4.8.2"
CHART_VERSION="4.9.0"
NAMESPACE="ingress-nginx"

if [ -z "${MP_KUBERNETES}" ]; then
Expand Down
2 changes: 1 addition & 1 deletion stacks/knative/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -e

OPERATOR_VERSION="1.10.0"
OPERATOR_VERSION="1.11.6"

kubectl apply -f "https://github.com/knative/serving/releases/download/knative-v${OPERATOR_VERSION}/serving-crds.yaml"
kubectl apply -f "https://github.com/knative/serving/releases/download/knative-v${OPERATOR_VERSION}/serving-core.yaml"
Expand Down
2 changes: 1 addition & 1 deletion stacks/kube-prometheus-stack/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ helm repo update > /dev/null
################################################################################
STACK="kube-prometheus-stack"
CHART="prometheus-community/kube-prometheus-stack"
CHART_VERSION="45.10.1"
CHART_VERSION="55.7.0"
NAMESPACE="kube-prometheus-stack"

if [ -z "${MP_KUBERNETES}" ]; then
Expand Down
4 changes: 2 additions & 2 deletions stacks/kube-state-metrics/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ helm repo update > /dev/null
################################################################################
STACK="kube-state-metrics"
CHART="bitnami/kube-state-metrics"
CHART_VERSION="3.2.0"
NAMESPACE="kube-system"
CHART_VERSION="3.8.6"
NAMESPACE="kube-state-metrics"

if [ -z "${MP_KUBERNETES}" ]; then
# use local version of values.yml
Expand Down
2 changes: 1 addition & 1 deletion stacks/kube-state-metrics/uninstall.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set -e
# chart
################################################################################
STACK="kube-state-metrics"
NAMESPACE="kube-system"
NAMESPACE="kube-state-metrics"


helm uninstall "$STACK" \
Expand Down
2 changes: 1 addition & 1 deletion stacks/metrics-server/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ helm repo update > /dev/null
################################################################################
STACK="metrics-server"
CHART="metrics-server/metrics-server"
CHART_VERSION="3.10.0"
CHART_VERSION="3.11.0"
NAMESPACE="metrics-server"

if [ -z "${MP_KUBERNETES}" ]; then
Expand Down
2 changes: 1 addition & 1 deletion stacks/openebs-nfs-provisioner/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ helm repo update > /dev/null
################################################################################
STACK="openebs-nfs-provisioner"
CHART="openebs-nfs/nfs-provisioner"
CHART_VERSION="0.9.0"
CHART_VERSION="0.11.0"
NAMESPACE="openebs-nfs-provisioner"

if [ -z "${MP_KUBERNETES}" ]; then
Expand Down
2 changes: 1 addition & 1 deletion stacks/wordpress-kubernetes/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ helm repo update > /dev/null
################################################################################
STACK="wordpress-kubernetes"
CHART="bitnami/wordpress"
CHART_VERSION="15.0.11"
CHART_VERSION="19.0.4"
NAMESPACE="wordpress"

if [ -z "${MP_KUBERNETES}" ]; then
Expand Down
Loading