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

chore(deps): update all non-major dependencies #1052

Merged
merged 1 commit into from
Jul 2, 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
2 changes: 1 addition & 1 deletion chart/k8gb/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -222,5 +222,5 @@ tracing:
jaegerImage:
# -- if `tracing.deployJaeger==true` this image will be used in the deployment for Jaeger
repository: jaegertracing/all-in-one
tag: 1.37.0
tag: 1.58.1
pullPolicy: Always
2 changes: 1 addition & 1 deletion deploy/test-apps/curldemo/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.
#
# Generated by GoLic, for more details see: https://github.com/AbsaOSS/golic
FROM curlimages/curl:8.00.1
FROM curlimages/curl:8.8.0

COPY k8gbcurl.sh /k8gbcurl.sh

Expand Down
2 changes: 1 addition & 1 deletion docs/examples/route53/terraform-aws-eks-k8gb/irsa.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module "iam_assumable_role_admin" {
source = "terraform-aws-modules/iam/aws//modules/iam-assumable-role-with-oidc"
version = "5.33.0"
version = "5.39.1"
create_role = true
role_name = "external-dns-${var.cluster_name}"
provider_url = replace(module.eks-cluster.cluster_oidc_issuer_url, "https://", "")
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/route53/terraform-aws-eks-k8gb/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ resource "aws_ec2_tag" "eks_elb" {
module "eks-cluster" {
tags = var.eks_tags
source = "terraform-aws-modules/eks/aws"
version = "20.2.1"
version = "20.15.0"
cluster_name = var.cluster_name
cluster_version = var.kubernetes_version
subnets = data.aws_subnet_ids.private.ids
Expand Down
4 changes: 2 additions & 2 deletions docs/examples/route53/terraform-aws-eks-k8gb/providers.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "5.31.0"
version = "5.56.1"
}
kubernetes = {
source = "hashicorp/kubernetes"
version = "2.5.0"
version = "2.31.0"
}
}
}
Loading