-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #491 from travier/stabilize-414
- Loading branch information
Showing
20 changed files
with
1,416 additions
and
34 deletions.
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
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,48 @@ | ||
// Copyright 2021 Red Hat, Inc | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License.) | ||
|
||
package result | ||
|
||
import ( | ||
"github.com/coreos/ignition/v2/config/v3_4/types" | ||
) | ||
|
||
const ( | ||
MC_API_VERSION = "machineconfiguration.openshift.io/v1" | ||
MC_KIND = "MachineConfig" | ||
) | ||
|
||
// We round-trip through JSON because Ignition uses `json` struct tags, | ||
// so all struct tags need to be `json` even though we're ultimately | ||
// writing YAML. | ||
|
||
type MachineConfig struct { | ||
ApiVersion string `json:"apiVersion"` | ||
Kind string `json:"kind"` | ||
Metadata Metadata `json:"metadata"` | ||
Spec Spec `json:"spec"` | ||
} | ||
|
||
type Metadata struct { | ||
Name string `json:"name"` | ||
Labels map[string]string `json:"labels,omitempty"` | ||
} | ||
|
||
type Spec struct { | ||
Config types.Config `json:"config"` | ||
KernelArguments []string `json:"kernelArguments,omitempty"` | ||
Extensions []string `json:"extensions,omitempty"` | ||
FIPS *bool `json:"fips,omitempty"` | ||
KernelType *string `json:"kernelType,omitempty"` | ||
} |
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,39 @@ | ||
// Copyright 2020 Red Hat, Inc | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License.) | ||
|
||
package v4_14 | ||
|
||
import ( | ||
fcos "github.com/coreos/butane/config/fcos/v1_5" | ||
) | ||
|
||
const ROLE_LABEL_KEY = "machineconfiguration.openshift.io/role" | ||
|
||
type Config struct { | ||
fcos.Config `yaml:",inline"` | ||
Metadata Metadata `yaml:"metadata"` | ||
OpenShift OpenShift `yaml:"openshift"` | ||
} | ||
|
||
type Metadata struct { | ||
Name string `yaml:"name"` | ||
Labels map[string]string `yaml:"labels,omitempty"` | ||
} | ||
|
||
type OpenShift struct { | ||
KernelArguments []string `yaml:"kernel_arguments"` | ||
Extensions []string `yaml:"extensions"` | ||
FIPS *bool `yaml:"fips"` | ||
KernelType *string `yaml:"kernel_type"` | ||
} |
Oops, something went wrong.