Skip to content

Commit

Permalink
Fix harbor argocd ignores
Browse files Browse the repository at this point in the history
  • Loading branch information
MacroPower committed May 28, 2024
1 parent 47a0f8b commit 9c539d2
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion applications/base/harbor/application.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,23 @@ app.new(
targetRevision='1.14.2',
releaseName='harbor',
values='values.yaml'
)
).withIgnoreDifferences([
{
'group': 'apps',
'kind': 'Deployment',
'namespace': ns.metadata.name,
'jsonPointers': [
'/metadata/resourceVersion',
'/metadata/generation',
],
},
{
'group': '',
'kind': 'Secret',
'namespace': ns.metadata.name,
'name': 'harbor-core',
'jsonPointers': [
'/data',
],
}
])

0 comments on commit 9c539d2

Please sign in to comment.