35d65c7c7e
Fixes #14617 Dynamic Node Metadata allows Nomad users, and their jobs, to update Node metadata through an API. Currently Node metadata is only reloaded when a Client agent is restarted. Includes new UI for editing metadata as well. --------- Co-authored-by: Phil Renaud <phil.renaud@hashicorp.com>
26 lines
350 B
SCSS
26 lines
350 B
SCSS
.add-dynamic-metadata {
|
|
padding: 0.75rem;
|
|
border: 1px solid $grey-blue;
|
|
border-top-width: 0;
|
|
margin-bottom: 3rem;
|
|
}
|
|
|
|
.metadata-editor {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 0.75rem;
|
|
|
|
.constant-key {
|
|
display: block;
|
|
}
|
|
|
|
footer {
|
|
grid-column: -1 / 1;
|
|
}
|
|
}
|
|
|
|
.edit-existing-metadata-button {
|
|
float: right;
|
|
}
|
|
|