Skip to content

Commit

Permalink
Merge branch 'main' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
ArchiFleKs committed Feb 13, 2023
2 parents db4845f + a88a532 commit 1999817
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr-title.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
# Please look up the latest version from
# https://github.com/amannn/action-semantic-pull-request/releases
- uses: amannn/action-semantic-pull-request@v5.0.2
- uses: amannn/action-semantic-pull-request@v5.1.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand Down
12 changes: 6 additions & 6 deletions helm-dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ dependencies:
version: 18.4.0
repository: https://codecentric.github.io/helm-charts
- name: kong
version: 2.16.2
version: 2.16.3
repository: https://charts.konghq.com
- name: kube-prometheus-stack
version: 45.0.0
Expand Down Expand Up @@ -99,7 +99,7 @@ dependencies:
version: 4.1.1
repository: https://prometheus-community.github.io/helm-charts
- name: prometheus-cloudwatch-exporter
version: 0.23.0
version: 0.24.0
repository: https://prometheus-community.github.io/helm-charts
- name: prometheus-blackbox-exporter
version: 7.5.0
Expand All @@ -123,10 +123,10 @@ dependencies:
version: v3.25.0
repository: https://docs.projectcalico.org/charts
- name: traefik
version: 20.8.0
version: 21.0.0
repository: https://helm.traefik.io/traefik
- name: memcached
version: 6.3.5
version: 6.3.6
repository: https://charts.bitnami.com/bitnami
- name: vault
version: 0.23.0
Expand All @@ -135,8 +135,8 @@ dependencies:
version: 3.1.2
repository: https://vmware-tanzu.github.io/helm-charts
- name: victoria-metrics-k8s-stack
version: 0.14.7
version: 0.14.8
repository: https://victoriametrics.github.io/helm-charts/
- name: yet-another-cloudwatch-exporter
version: 0.12.0
version: 0.14.0
repository: https://nerdswords.github.io/yet-another-cloudwatch-exporter
1 change: 1 addition & 0 deletions kong-crds.tf
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,5 @@ resource "kubectl_manifest" "kong_crds" {
for_each = local.kong.enabled && local.kong.manage_crds ? { for v in local.kong_crds_apply : lower(join("/", compact([v.data.apiVersion, v.data.kind, lookup(v.data.metadata, "namespace", ""), v.data.metadata.name]))) => v.content } : {}
yaml_body = each.value
server_side_apply = true
force_conflicts = true
}
1 change: 1 addition & 0 deletions kube-prometheus-crd.tf
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,5 @@ resource "kubectl_manifest" "prometheus-operator_crds" {
for_each = (local.victoria-metrics-k8s-stack.enabled && local.victoria-metrics-k8s-stack.install_prometheus_operator_crds) || (local.kube-prometheus-stack.enabled && local.kube-prometheus-stack.manage_crds) ? local.prometheus-operator_crds_apply : {}
yaml_body = each.value
server_side_apply = true
force_conflicts = true
}

0 comments on commit 1999817

Please sign in to comment.