Skip to content

Commit

Permalink
Revert "Merge pull request openshift#3830 from dgoodwin/revert-3763-m…
Browse files Browse the repository at this point in the history
…co-565b"

This reverts commit 6b2fa8d, reversing
changes made to 8e61b30.
  • Loading branch information
dkhater-redhat committed Aug 1, 2023
1 parent 9c50df6 commit 69667ec
Show file tree
Hide file tree
Showing 17 changed files with 511 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
MCO_COMPONENTS = daemon controller server operator
EXTRA_COMPONENTS = apiserver-watcher
EXTRA_COMPONENTS = apiserver-watcher machine-os-builder
ALL_COMPONENTS = $(patsubst %,machine-config-%,$(MCO_COMPONENTS)) $(EXTRA_COMPONENTS)
PREFIX ?= /usr
GO111MODULE?=on
Expand Down
28 changes: 28 additions & 0 deletions cmd/machine-os-builder/main.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
package main

import (
"flag"
"fmt"
"time"

"github.com/spf13/cobra"
)

const componentName = "machine-os-builder"

var (
rootCmd = &cobra.Command{
Use: componentName,
Short: "Run Machine OS Builder",
Long: "",
}
)

func init() {
rootCmd.PersistentFlags().AddGoFlagSet(flag.CommandLine)
}

func main() {
fmt.Println("Hello, World!")
<-time.After(876000 * time.Hour)
}
38 changes: 38 additions & 0 deletions cmd/machine-os-builder/start.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
package main

import (
"flag"

"github.com/openshift/machine-config-operator/pkg/version"
"github.com/spf13/cobra"
"k8s.io/klog/v2"
)

var (
startCmd = &cobra.Command{
Use: "start",
Short: "Starts Machine OS Builder",
Long: "",
Run: runStartCmd,
}

startOpts struct {
kubeconfig string
}
)

func init() {
rootCmd.AddCommand(startCmd)
startCmd.PersistentFlags().StringVar(&startOpts.kubeconfig, "kubeconfig", "", "Kubeconfig file to access a remote cluster (testing only)")
}

func runStartCmd(_ *cobra.Command, _ []string) {
flag.Set("logtostderr", "true")
flag.Parse()

klog.V(2).Infof("Options parsed: %+v", startOpts)

// To help debugging, immediately log version
klog.Infof("Version: %+v (%s)", version.Raw, version.Hash)

}
32 changes: 32 additions & 0 deletions cmd/machine-os-builder/version.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
package main

import (
"flag"
"fmt"

"github.com/openshift/machine-config-operator/pkg/version"
"github.com/spf13/cobra"
)

var (
versionCmd = &cobra.Command{
Use: "version",
Short: "Print the version number of Machine OS Builder",
Long: `All software has versions. This is Machine OS Builder's.`,
Run: runVersionCmd,
}
)

func init() {
rootCmd.AddCommand(versionCmd)
}

func runVersionCmd(_ *cobra.Command, _ []string) {
flag.Set("logtostderr", "true")
flag.Parse()

program := "MachineConfigController"
version := version.Raw + "-" + version.Hash

fmt.Println(program, version)
}
66 changes: 66 additions & 0 deletions manifests/machineosbuilder/clusterrole.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
name: machine-os-builder
rules:
- apiGroups: [""]
resources: ["nodes"]
verbs: ["get", "list", "watch", "patch"]
- apiGroups: ["machineconfiguration.openshift.io"]
resources: ["*"]
verbs: ["*"]
- apiGroups: [""]
resources: ["configmaps", "secrets"]
verbs: ["*"]
- apiGroups: ["config.openshift.io"]
resources: ["images", "clusterversions", "featuregates", "nodes", "nodes/status"]
verbs: ["*"]
- apiGroups: ["config.openshift.io"]
resources: ["schedulers", "apiservers", "infrastructures", "imagedigestmirrorsets", "imagetagmirrorsets"]
verbs: ["get", "list", "watch"]
- apiGroups: ["operator.openshift.io"]
resources: ["imagecontentsourcepolicies"]
verbs: ["get", "list", "watch"]
- apiGroups: ["operator.openshift.io"]
resources: ["etcds"]
verbs: ["get", "list", "watch"]
- apiGroups: ["image.openshift.io"]
resources: ["images"]
verbs: ["get","list","watch","create","update","patch","delete"]
- apiGroups: ["image.openshift.io"]
resources: ["imagestreams"]
verbs: ["get","list","watch","create","update","patch","delete"]
- apiGroups: ["build.openshift.io"]
resources: ["builds","buildconfigs","buildconfigs/instantiate"]
verbs: ["get","list","watch","create","update","patch","delete"]
- apiGroups: [""]
resources: ["pods/eviction"]
verbs: ["create"]
- apiGroups: [""]
resources: ["pods"]
verbs: ["get", "list", "create", "delete"]
- apiGroups: ["extensions"]
resources: ["daemonsets"]
verbs: ["get"]
- apiGroups: ["apps"]
resources: ["daemonsets"]
verbs: ["get"]
- apiGroups:
- authentication.k8s.io
resources:
- tokenreviews
- subjectaccessreviews
verbs:
- create
- apiGroups:
- authorization.k8s.io
resources:
- subjectaccessreviews
verbs:
- create
- apiGroups:
- coordination.k8s.io
resources:
- leases
verbs:
- "*"
16 changes: 16 additions & 0 deletions manifests/machineosbuilder/clusterrolebinding-anyuid.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# (zzlotnik): Grant the machine-os-builder service account the ability to start
# pods with UID 1000 for builds. This allows us to run Buildah in an
# unprivileged pod for better security than allowing it to run in a privileged
# pod.
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: machine-os-builder-anyuid
roleRef:
name: "system:openshift:scc:anyuid"
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
subjects:
- name: machine-os-builder
kind: ServiceAccount
namespace: "{{.TargetNamespace}}"
11 changes: 11 additions & 0 deletions manifests/machineosbuilder/clusterrolebinding-service-account.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: machine-os-builder
roleRef:
kind: ClusterRole
name: machine-os-builder
subjects:
- kind: ServiceAccount
namespace: "{{.TargetNamespace}}"
name: machine-os-builder
25 changes: 25 additions & 0 deletions manifests/machineosbuilder/deployment.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: machine-os-builder
namespace: "{{.TargetNamespace}}"
spec:
replicas: 1
selector:
matchLabels:
k8s-app: machine-os-builder
template:
metadata:
labels:
k8s-app: machine-os-builder
annotations:
target.workload.openshift.io/management: '{"effect": "PreferredDuringScheduling"}'
spec:
containers:
- name: machine-os-builder
image: "{{.Images.MachineConfigOperator}}"
command: ["/usr/bin/machine-os-builder"]
args:
- start
- -v4
serviceAccountName: machine-os-builder
8 changes: 8 additions & 0 deletions manifests/machineosbuilder/events-clusterrole.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
name: machine-os-builder-events
rules:
- apiGroups: [""]
resources: ["events"]
verbs: ["create", "patch"]
12 changes: 12 additions & 0 deletions manifests/machineosbuilder/events-rolebinding-default.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
apiVersion: rbac.authorization.k8s.io/v1
kind: RoleBinding
metadata:
name: machine-os-builder-events
namespace: default
roleRef:
kind: ClusterRole
name: machine-os-builder-events
subjects:
- kind: ServiceAccount
namespace: {{.TargetNamespace}}
name: machine-os-builder
12 changes: 12 additions & 0 deletions manifests/machineosbuilder/events-rolebinding-target.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
apiVersion: rbac.authorization.k8s.io/v1
kind: RoleBinding
metadata:
name: machine-os-builder-events
namespace: {{.TargetNamespace}}
roleRef:
kind: ClusterRole
name: machine-os-builder-events
subjects:
- kind: ServiceAccount
namespace: {{.TargetNamespace}}
name: machine-os-builder
5 changes: 5 additions & 0 deletions manifests/machineosbuilder/sa.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
apiVersion: v1
kind: ServiceAccount
metadata:
namespace: {{.TargetNamespace}}
name: machine-os-builder
1 change: 1 addition & 0 deletions pkg/controller/common/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ const (

// MachineConfigPoolMaster is the MachineConfigPool name given to the master
MachineConfigPoolMaster = "master"

// MachineConfigPoolWorker is the MachineConfigPool name given to the worker
MachineConfigPoolWorker = "worker"

Expand Down
1 change: 1 addition & 0 deletions pkg/operator/operator.go
Original file line number Diff line number Diff line change
Expand Up @@ -362,6 +362,7 @@ func (optr *Operator) sync(key string) error {
{"MachineConfigDaemon", optr.syncMachineConfigDaemon},
{"MachineConfigController", optr.syncMachineConfigController},
{"MachineConfigServer", optr.syncMachineConfigServer},
{"MachineOSBuilder", optr.syncMachineOSBuilder},
// this check must always run last since it makes sure the pools are in sync/upgrading correctly
{"RequiredPools", optr.syncRequiredMachineConfigPools},
}
Expand Down
Loading

0 comments on commit 69667ec

Please sign in to comment.