Skip to content

Commit

Permalink
config: Fix openshift 4.17.0 imports
Browse files Browse the repository at this point in the history
Fixes: coreos#547
  • Loading branch information
yasminvalim authored and travier committed Dec 3, 2024
1 parent c6bae08 commit b35877e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ import (
openshift4_14 "github.com/coreos/butane/config/openshift/v4_14"
openshift4_15 "github.com/coreos/butane/config/openshift/v4_15"
openshift4_16 "github.com/coreos/butane/config/openshift/v4_16"
openshift4_17_exp "github.com/coreos/butane/config/openshift/v4_17"
openshift4_17 "github.com/coreos/butane/config/openshift/v4_17"
openshift4_18_exp "github.com/coreos/butane/config/openshift/v4_18_exp"
openshift4_8 "github.com/coreos/butane/config/openshift/v4_8"
openshift4_9 "github.com/coreos/butane/config/openshift/v4_9"
Expand Down Expand Up @@ -82,7 +82,7 @@ func init() {
RegisterTranslator("openshift", "4.14.0", openshift4_14.ToConfigBytes)
RegisterTranslator("openshift", "4.15.0", openshift4_15.ToConfigBytes)
RegisterTranslator("openshift", "4.16.0", openshift4_16.ToConfigBytes)
RegisterTranslator("openshift", "4.17.0", openshift4_17_exp.ToConfigBytes)
RegisterTranslator("openshift", "4.17.0", openshift4_17.ToConfigBytes)
RegisterTranslator("openshift", "4.18.0-experimental", openshift4_18_exp.ToConfigBytes)
RegisterTranslator("r4e", "1.0.0", r4e1_0.ToIgn3_3Bytes)
RegisterTranslator("r4e", "1.1.0", r4e1_1.ToIgn3_4Bytes)
Expand Down

0 comments on commit b35877e

Please sign in to comment.