mirror of
https://github.com/siderolabs/talos.git
synced 2025-12-17 07:21:22 +01:00
fix: change apid container image name to expected value
This is what happens when massive find-replace goes wrong... Change should be cosmetic though, it doesn't affect operations. Signed-off-by: Andrey Smirnov <smirnov.andrey@gmail.com>
This commit is contained in:
parent
f6ecf000c9
commit
2085e9220c
@ -122,7 +122,7 @@ This can be achieved by the `containers` subcommand:
|
|||||||
```bash
|
```bash
|
||||||
$ talosctl containers
|
$ talosctl containers
|
||||||
NODE NAMESPACE ID IMAGE PID STATUS
|
NODE NAMESPACE ID IMAGE PID STATUS
|
||||||
192.168.2.44 system apid talos/pkg/machinery/apid 4021 RUNNING
|
192.168.2.44 system apid talos/apid 4021 RUNNING
|
||||||
192.168.2.44 system networkd talos/networkd 3893 RUNNING
|
192.168.2.44 system networkd talos/networkd 3893 RUNNING
|
||||||
192.168.2.44 system ntpd talos/ntpd 4144 RUNNING
|
192.168.2.44 system ntpd talos/ntpd 4144 RUNNING
|
||||||
192.168.2.44 system osd talos/osd 4086 RUNNING
|
192.168.2.44 system osd talos/osd 4086 RUNNING
|
||||||
|
|||||||
@ -118,7 +118,7 @@ This can be achieved by the `containers` subcommand:
|
|||||||
```bash
|
```bash
|
||||||
$ talosctl containers
|
$ talosctl containers
|
||||||
NODE NAMESPACE ID IMAGE PID STATUS
|
NODE NAMESPACE ID IMAGE PID STATUS
|
||||||
192.168.2.44 system apid talos/pkg/machinery/apid 4021 RUNNING
|
192.168.2.44 system apid talos/apid 4021 RUNNING
|
||||||
192.168.2.44 system networkd talos/networkd 3893 RUNNING
|
192.168.2.44 system networkd talos/networkd 3893 RUNNING
|
||||||
192.168.2.44 system ntpd talos/ntpd 4144 RUNNING
|
192.168.2.44 system ntpd talos/ntpd 4144 RUNNING
|
||||||
192.168.2.44 system routerd talos/routerd 3907 RUNNING
|
192.168.2.44 system routerd talos/routerd 3907 RUNNING
|
||||||
|
|||||||
@ -49,7 +49,7 @@ func (o *APID) PreFunc(ctx context.Context, r runtime.Runtime) error {
|
|||||||
return importer.Import(&containerd.ImportRequest{
|
return importer.Import(&containerd.ImportRequest{
|
||||||
Path: "/usr/images/apid.tar",
|
Path: "/usr/images/apid.tar",
|
||||||
Options: []containerdapi.ImportOpt{
|
Options: []containerdapi.ImportOpt{
|
||||||
containerdapi.WithIndexName("talos/pkg/machinery/apid"),
|
containerdapi.WithIndexName("talos/apid"),
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@ -81,7 +81,7 @@ func (o *APID) DependsOn(r runtime.Runtime) []string {
|
|||||||
//
|
//
|
||||||
//nolint: gocyclo
|
//nolint: gocyclo
|
||||||
func (o *APID) Runner(r runtime.Runtime) (runner.Runner, error) {
|
func (o *APID) Runner(r runtime.Runtime) (runner.Runner, error) {
|
||||||
image := "talos/pkg/machinery/apid"
|
image := "talos/apid"
|
||||||
|
|
||||||
endpoints := []string{"127.0.0.1"}
|
endpoints := []string{"127.0.0.1"}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user