Skip to content

Commit

Permalink
fix: ignore differences in webhook caBundle
Browse files Browse the repository at this point in the history
  • Loading branch information
oliver-ni committed Sep 11, 2023
1 parent eedd1bf commit 2fc5b68
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions apps/argocd.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import json

import yaml
from transpire import helm
from transpire.utils import get_versions
Expand Down Expand Up @@ -59,6 +61,13 @@ def objects():
],
}
),
"resource.customizations.ignoreDifferences.admissionregistration.k8s.io_MutatingWebhookConfiguration": json.dumps(
{
"jqPathExpressions": [
".webhooks[]?.clientConfig.caBundle",
]
}
),
},
"params": {
"server.insecure": True,
Expand Down

0 comments on commit 2fc5b68

Please sign in to comment.