-
Notifications
You must be signed in to change notification settings - Fork 98
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
Feat/pci kubernetes show etcd 3 tapc 23 #14143
Merged
anooparveti
merged 14 commits into
release/public-cloud-w48
from
feat/pci-kubernetes_show-etcd-3_tapc-23
Nov 22, 2024
Merged
Feat/pci kubernetes show etcd 3 tapc 23 #14143
anooparveti
merged 14 commits into
release/public-cloud-w48
from
feat/pci-kubernetes_show-etcd-3_tapc-23
Nov 22, 2024
Conversation
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
ppprevost
requested review from
sidlynx,
frenautvh,
tibs245,
oalkabouss and
sachinrameshn
November 18, 2024 10:38
github-actions
bot
added
translation required
feature
New feature
has conflicts
Has conflicts to resolve before merging
labels
Nov 18, 2024
ppprevost
force-pushed
the
feat/pci-kubernetes_show-etcd-3_tapc-23
branch
from
November 18, 2024 13:53
0e742b8
to
bfeea77
Compare
github-actions
bot
removed
the
has conflicts
Has conflicts to resolve before merging
label
Nov 18, 2024
packages/manager/apps/pci-kubernetes/src/api/data/kubernetes.ts
Outdated
Show resolved
Hide resolved
packages/manager/apps/pci-kubernetes/src/components/service/ClusterETCD.component.tsx
Outdated
Show resolved
Hide resolved
packages/manager/apps/pci-kubernetes/src/components/service/ClusterETCD.component.tsx
Outdated
Show resolved
Hide resolved
packages/manager/apps/pci-kubernetes/src/components/service/ClusterETCD.component.tsx
Outdated
Show resolved
Hide resolved
SimonChaumet
previously approved these changes
Nov 19, 2024
fredericvilcot
previously approved these changes
Nov 19, 2024
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.
👍🏻
@@ -627,3 +628,14 @@ export const useCreateKubernetesCluster = ({ | |||
...mutation, | |||
}; | |||
}; | |||
|
|||
export const useGetClusterEtcdUsage = (projectId, kubeId) => { |
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.
Suggested change
export const useGetClusterEtcdUsage = (projectId, kubeId) => { | |
export const useClusterEtcdUsage = (projectId, kubeId) => { |
ppprevost
dismissed stale reviews from fredericvilcot and SimonChaumet
via
November 20, 2024 13:35
b01075c
github-actions
bot
added
the
has conflicts
Has conflicts to resolve before merging
label
Nov 20, 2024
Signed-off-by: CDS Translator Agent <[email protected]>
ref: TAPC-23 Signed-off-by: Pierre-Philippe <[email protected]>
ref: TAPC-23 Signed-off-by: Pierre-Philippe <[email protected]>
ref: TAPC-23 Signed-off-by: Pierre-Philippe <[email protected]>
ref: TAPC-23 Signed-off-by: Pierre-Philippe <[email protected]>
ref: TAPC-23 Signed-off-by: Pierre-Philippe <[email protected]>
ref: TAPC-23 Signed-off-by: Pierre-Philippe <[email protected]>
ref: TAPC-23 Signed-off-by: Pierre-Philippe <[email protected]>
ref: TAPC-23 Signed-off-by: Pierre-Philippe <[email protected]>
ref: TAPC-23 Signed-off-by: Pierre-Philippe <[email protected]>
ref: TAPC-23 Signed-off-by: Pierre-Philippe <[email protected]>
Signed-off-by: CDS Translator Agent <[email protected]>
ref: TAPC-23 Signed-off-by: Pierre-Philippe <[email protected]>
ref: TAPC-23 Signed-off-by: Pierre-Philippe <[email protected]>
ppprevost
force-pushed
the
feat/pci-kubernetes_show-etcd-3_tapc-23
branch
from
November 21, 2024 09:39
334ea83
to
5def5b3
Compare
github-actions
bot
removed
the
has conflicts
Has conflicts to resolve before merging
label
Nov 21, 2024
Quality Gate passedIssues Measures |
SimonChaumet
approved these changes
Nov 21, 2024
fredericvilcot
approved these changes
Nov 21, 2024
anooparveti
changed the base branch from
develop
to
release/public-cloud-w48
November 22, 2024 07:08
8 tasks
anooparveti
pushed a commit
that referenced
this pull request
Nov 25, 2024
ref: TAPC-23 Signed-off-by: Pierre-Philippe <[email protected]> Co-authored-by: CDS Translator Agent <[email protected]>
ppprevost
added a commit
that referenced
this pull request
Nov 27, 2024
ref: TAPC-23 Signed-off-by: Pierre-Philippe <[email protected]> Co-authored-by: CDS Translator Agent <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
develop
Description
Feature: Display ETCD quota usage for Kubernetes clusters.
Description:
Added an indicator for ETCD quota usage on the Kubernetes cluster dashboard.
Gauge behavior:
Blue: usage < 70%
Orange: usage between 70% and 79%
Red: usage ≥ 80%
Banner:
A warning banner is displayed when ETCD usage is ≥ 80%, with a message and link to documentation. The banner is removed when usage drops below 80%.
Field name: "ETCD Quota Usage" (displayed in MiB with tooltips).
Placement: The gauge is positioned at the bottom of the cluster information section.
Related