forked from gardener/dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Configure extension DNS settings in the
spec.extensions
section (ga…
…rdener#1888) * Adapted to DNS Changes * PR Feedback #1 * Removed getResourceRefName utils function * PR Feedback gardener#2 * Made custom cluster domain required if checkbox is selected Made "Recommended DNS Configuration" Button more prominent * Removed dnsState Operate directly on manifest * Some minor code styling changes Removed readonly checks -> Show secretname as disabled v-text-field in case secretbinding is missing * Feedback to `enh/adapt_to_dns_changes` (gardener#1928) * extract useShootDns composable * move dns tests to own file * Some UI Feedback * Explicit DNS Configuration Migration UI optimizations * changed ddns vendor name to rfc2136 (as this is the correct value for this provider) * Fixed dns provider combobox chips Show dns domain settings if checkbox selected Some naming updates (again) * Reset domain input field Apply alert optimizations * PR Feedback * PR Feedback * PR Feedback --------- Co-authored-by: Holger Koser <[email protected]>
- Loading branch information
1 parent
f433480
commit 4af534a
Showing
30 changed files
with
1,085 additions
and
767 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -315,156 +315,6 @@ exports[`api shoots should replace addons 2`] = ` | |
} | ||
`; | ||
|
||
exports[`api shoots should replace control plane high availablility 1`] = ` | ||
[ | ||
[ | ||
{ | ||
":authority": "kubernetes:6443", | ||
":method": "patch", | ||
":path": "/apis/core.gardener.cloud/v1beta1/namespaces/garden-foo/shoots/barShoot", | ||
":scheme": "https", | ||
"authorization": "Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6ImZvb0BleGFtcGxlLm9yZyIsImlhdCI6MTU3NzgzNjgwMCwiYXVkIjpbImdhcmRlbmVyIl0sImV4cCI6MzE1NTcxNjgwMCwianRpIjoianRpIn0.k3kGjF6AgugJLdwERXEWZPaibFAPFPOnmpT3YM9H0xU", | ||
"content-type": "application/merge-patch+json", | ||
}, | ||
{ | ||
"spec": { | ||
"controlPlane": { | ||
"highAvailability": { | ||
"failureTolerance": { | ||
"type": "node", | ||
}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
], | ||
] | ||
`; | ||
|
||
exports[`api shoots should replace control plane high availablility 2`] = ` | ||
{ | ||
"metadata": { | ||
"annotations": { | ||
"gardener.cloud/created-by": "[email protected]", | ||
}, | ||
"name": "barShoot", | ||
"namespace": "garden-foo", | ||
"resourceVersion": "43", | ||
"uid": 2, | ||
}, | ||
"spec": { | ||
"cloudProfileName": "infra1-profileName", | ||
"controlPlane": { | ||
"highAvailability": { | ||
"failureTolerance": { | ||
"type": "node", | ||
}, | ||
}, | ||
}, | ||
"hibernation": { | ||
"enabled": false, | ||
}, | ||
"kubernetes": { | ||
"version": "1.16.0", | ||
}, | ||
"provider": { | ||
"type": "fooInfra", | ||
}, | ||
"purpose": "barPurpose", | ||
"region": "foo-west", | ||
"secretBindingName": "foo-infra1", | ||
"seedName": "infra1-seed", | ||
}, | ||
"status": { | ||
"advertisedAddresses": [ | ||
{ | ||
"name": "external", | ||
"url": "https://api.barShoot.foo.shoot.test", | ||
}, | ||
], | ||
"technicalID": "shoot--foo--barShoot", | ||
}, | ||
} | ||
`; | ||
|
||
exports[`api shoots should replace dns 1`] = ` | ||
[ | ||
[ | ||
{ | ||
":authority": "kubernetes:6443", | ||
":method": "patch", | ||
":path": "/apis/core.gardener.cloud/v1beta1/namespaces/garden-foo/shoots/barShoot", | ||
":scheme": "https", | ||
"authorization": "Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6ImZvb0BleGFtcGxlLm9yZyIsImlhdCI6MTU3NzgzNjgwMCwiYXVkIjpbImdhcmRlbmVyIl0sImV4cCI6MzE1NTcxNjgwMCwianRpIjoianRpIn0.k3kGjF6AgugJLdwERXEWZPaibFAPFPOnmpT3YM9H0xU", | ||
"content-type": "application/merge-patch+json", | ||
}, | ||
{ | ||
"spec": { | ||
"dns": { | ||
"domain": "foo.bar", | ||
"providers": [ | ||
{ | ||
"primary": "true", | ||
"secretName": "foo-secret", | ||
"type": "foo-provider", | ||
}, | ||
], | ||
}, | ||
}, | ||
}, | ||
], | ||
] | ||
`; | ||
|
||
exports[`api shoots should replace dns 2`] = ` | ||
{ | ||
"metadata": { | ||
"annotations": { | ||
"gardener.cloud/created-by": "[email protected]", | ||
}, | ||
"name": "barShoot", | ||
"namespace": "garden-foo", | ||
"resourceVersion": "43", | ||
"uid": 2, | ||
}, | ||
"spec": { | ||
"cloudProfileName": "infra1-profileName", | ||
"dns": { | ||
"domain": "foo.bar", | ||
"providers": [ | ||
{ | ||
"primary": "true", | ||
"secretName": "foo-secret", | ||
"type": "foo-provider", | ||
}, | ||
], | ||
}, | ||
"hibernation": { | ||
"enabled": false, | ||
}, | ||
"kubernetes": { | ||
"version": "1.16.0", | ||
}, | ||
"provider": { | ||
"type": "fooInfra", | ||
}, | ||
"purpose": "barPurpose", | ||
"region": "foo-west", | ||
"secretBindingName": "foo-infra1", | ||
"seedName": "infra1-seed", | ||
}, | ||
"status": { | ||
"advertisedAddresses": [ | ||
{ | ||
"name": "external", | ||
"url": "https://api.barShoot.foo.shoot.test", | ||
}, | ||
], | ||
"technicalID": "shoot--foo--barShoot", | ||
}, | ||
} | ||
`; | ||
|
||
exports[`api shoots should replace hibernation enabled 1`] = ` | ||
[ | ||
[ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 0 additions & 13 deletions
13
frontend/__tests__/composables/__snapshots__/useShootContext.spec.js.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.