mirror of
https://github.com/projectcapsule/capsule.git
synced 2026-05-23 17:52:47 +00:00
* refactor: remove 'Additional' prefix from Labels and Annotations fields in AdditionalMetadataSpec * test(e2e): aligning tests to use updated AdditionalMetadataSpec structure * build(kustomize): CRD update for updated v1beta1 AdditionalMetadataSpec * build(helm): CRD update for updated v1beta1 AdditionalMetadataSpec * build(installer): CRD update for updated v1beta1 AdditionalMetadataSpec Co-authored-by: Maksim Fedotov <m_fedotov@wargaming.net>
10 lines
251 B
Go
10 lines
251 B
Go
// Copyright 2020-2021 Clastix Labs
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package v1beta1
|
|
|
|
type AdditionalMetadataSpec struct {
|
|
Labels map[string]string `json:"labels,omitempty"`
|
|
Annotations map[string]string `json:"annotations,omitempty"`
|
|
}
|