-
Notifications
You must be signed in to change notification settings - Fork 103
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added Rotate Credentials Help Dialog #2100
Merged
Merged
Changes from 1 commit
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
4af78d2
Added Rotate Credentials Help Dialog
grolu ec78c34
Merge branch 'master' into enh/add_rotate_credentials_help
grolu 0145b3e
Use GGenericActionButtonDialog for Help Dialogs
grolu 28f3cf0
Merge branch 'master' into enh/add_rotate_credentials_help
grolu 176ae8a
PR Feedback (text)
grolu 5d8e584
Merge branch 'enh/add_rotate_credentials_help' of github.com:gardener…
grolu 0b158dd
Merge branch 'master' into enh/add_rotate_credentials_help
grolu File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
<!-- | ||
SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and Gardener contributors | ||
|
||
SPDX-License-Identifier: Apache-2.0 | ||
--> | ||
|
||
<template> | ||
<g-action-button | ||
icon="mdi-help-circle-outline" | ||
color="toolbar-title" | ||
class="mr-4" | ||
@click="showDialog" | ||
> | ||
<template #tooltip> | ||
<span>Help</span> | ||
</template> | ||
</g-action-button> | ||
<g-dialog | ||
ref="gDialog" | ||
confirm-button-text="Ok" | ||
cancel-button-text="" | ||
width="600" | ||
> | ||
<template #caption> | ||
Credential Rotation Help | ||
</template> | ||
<template #content> | ||
<v-card-text> | ||
There are a lot of different credentials for Shoots to make sure that the various components can communicate with each other and to make sure it is usable and operable.<br> | ||
<g-external-link url="https://github.com/gardener/gardener/blob/master/docs/usage/shoot_credentials_rotation.md"> | ||
This page | ||
</g-external-link> | ||
explains how the varieties of credentials can be rotated so that the cluster can be considered secure. | ||
</v-card-text> | ||
</template> | ||
</g-dialog> | ||
</template> | ||
|
||
<script> | ||
import GDialog from '@/components/dialogs/GDialog.vue' | ||
import GActionButton from '@/components/GActionButton.vue' | ||
|
||
export default { | ||
components: { | ||
GDialog, | ||
GActionButton, | ||
}, | ||
methods: { | ||
showDialog () { | ||
this.$refs.gDialog.showDialog() | ||
}, | ||
}, | ||
} | ||
</script> | ||
grolu marked this conversation as resolved.
Show resolved
Hide resolved
|
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I understand that you have copied the text from the docs, however I guess they need to be improved a bit
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is c&p from the Gardener docu.. maybe we should change this also in the upstream repo? 🤔