Skip to content

Commit

Permalink
[deployment] Update removed/deprecated resources and fields for Kuber…
Browse files Browse the repository at this point in the history
…netes v1.25 (#961)
  • Loading branch information
BradNicolle authored Sep 15, 2023
1 parent b4eab7b commit c24676b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions build/deploy/base.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ local util = import 'util.libsonnet';
metadata: {
name: name,
namespace: metadata.namespace,
clusterName: metadata.clusterName,
labels: {
name: std.join('-', std.split(name, ':')),
},
Expand Down Expand Up @@ -54,7 +53,7 @@ local util = import 'util.libsonnet';

},

PodDisruptionBudget(metadata, name): $._Object('policy/v1beta1', 'PodDisruptionBudget', metadata, name) {
PodDisruptionBudget(metadata, name): $._Object('policy/v1', 'PodDisruptionBudget', metadata, name) {
local pdb = self,
app:: error "must specify app",
metadata+: {
Expand All @@ -72,7 +71,7 @@ local util = import 'util.libsonnet';
},
},

ManagedCert(metadata, name): $._Object('networking.gke.io/v1beta1', 'ManagedCertificate', metadata, name) {
ManagedCert(metadata, name): $._Object('networking.gke.io/v1', 'ManagedCertificate', metadata, name) {

},

Expand Down

0 comments on commit c24676b

Please sign in to comment.