Skip to content

Commit

Permalink
enhancement(4811): added fips in the package manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
kaanyalti committed Mar 7, 2025
1 parent 7620c88 commit dccc6cc
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions pkg/api/v1/manifest.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,16 @@ import (
"gopkg.in/yaml.v2"
)

const ManifestKind = "PackageManifest"
const ManifestFileName = "manifest.yaml"
const (
ManifestKind = "PackageManifest"
ManifestFileName = "manifest.yaml"
)

type PackageDesc struct {
Version string `yaml:"version,omitempty" json:"version,omitempty"`
Snapshot bool `yaml:"snapshot,omitempty" json:"snapshot,omitempty"`
Hash string `yaml:"hash,omitempty" json:"hash,omitempty"`
Fips bool `yaml:"fips,omitempty" json:"fips,omitempty"`
VersionedHome string `yaml:"versioned-home,omitempty" json:"versionedHome,omitempty"`
PathMappings []map[string]string `yaml:"path-mappings,omitempty" json:"pathMappings,omitempty"`
Flavors map[string][]string `yaml:"flavors,omitempty" json:"flavors,omitempty"`
Expand Down

0 comments on commit dccc6cc

Please sign in to comment.