Skip to content

Commit

Permalink
Add a fetch stage
Browse files Browse the repository at this point in the history
This stage just triggers the internal code which fetches the
config and writes `/run/ignition.json`; from there it'd be picked
up by later stages the way it was implicitly before.

This is prep for adding support for redeploying the rootfs for
Fedora CoreOS; we need to have a separate process determine
whether the rootfs is being replaced, and if so do a save/restore
across `ignition-disks.service`.

See: coreos/ignition-dracut#107
(cherry picked from commit 8926f0f)
  • Loading branch information
cgwalters committed Oct 1, 2019
1 parent e3e3cbf commit 8e5968f
Show file tree
Hide file tree
Showing 2 changed files with 65 additions and 0 deletions.
64 changes: 64 additions & 0 deletions internal/exec/stages/fetch/fetch.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
// Copyright 2019 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.

// The storage stage is responsible for partitioning disks, creating RAID
// arrays, formatting partitions, writing files, writing systemd units, and
// writing network units.

package disks

import (
"github.com/coreos/ignition/internal/config/types"
"github.com/coreos/ignition/internal/exec/stages"
"github.com/coreos/ignition/internal/exec/util"
"github.com/coreos/ignition/internal/log"
"github.com/coreos/ignition/internal/resource"
)

const (
name = "fetch"
)

func init() {
stages.Register(creator{})
}

type creator struct{}

func (creator) Create(logger *log.Logger, root string, _ resource.Fetcher) stages.Stage {
return &stage{
Util: util.Util{
DestDir: root,
Logger: logger,
},
}
}

func (creator) Name() string {
return name
}

type stage struct {
util.Util
}

func (stage) Name() string {
return name
}

func (s stage) Run(_ types.Config) error {
// Nothing - all we do is fetch and allow anything else in the initramfs to run
s.Logger.Info("fetch complete")
return nil
}
1 change: 1 addition & 0 deletions internal/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ import (
"github.com/coreos/ignition/internal/exec"
"github.com/coreos/ignition/internal/exec/stages"
_ "github.com/coreos/ignition/internal/exec/stages/disks"
_ "github.com/coreos/ignition/internal/exec/stages/fetch"
_ "github.com/coreos/ignition/internal/exec/stages/files"
"github.com/coreos/ignition/internal/log"
"github.com/coreos/ignition/internal/oem"
Expand Down

0 comments on commit 8e5968f

Please sign in to comment.