-
Notifications
You must be signed in to change notification settings - Fork 372
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use Go's built-in way of embedding static assets in binaries, instead of relying on the somewhat legacy go-bindata tool. This allows the embedding to be handled transparently by the Go compiler, eliminating some extra Makefile steps. Hide the path prefixes used to embed the data behind a sub-fs. Signed-off-by: Tom Wieczorek <twieczorek@mirantis.com>
- Loading branch information
Showing
10 changed files
with
82 additions
and
53 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
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 |
---|---|---|
@@ -1,3 +1,2 @@ | ||
controller-gen_version = 0.15.0 | ||
go-bindata_version = 3.23.0+incompatible | ||
golangci-lint_version = 1.57.1 |
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
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
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,49 @@ | ||
/* | ||
Copyright 2024 k0s authors | ||
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 static | ||
|
||
import ( | ||
"embed" | ||
"io/fs" | ||
"path" | ||
) | ||
|
||
var ( | ||
//go:embed _crds | ||
crds embed.FS | ||
CRDs fs.FS = subFS(crds, "_crds") | ||
) | ||
|
||
var ( | ||
//go:embed manifests/calico | ||
calicoManifests embed.FS | ||
CalicoManifests fs.FS = subFS(calicoManifests, "manifests", "calico") | ||
) | ||
|
||
var ( | ||
//go:embed manifests/windows | ||
windowsManifests embed.FS | ||
WindowsManifests fs.FS = subFS(windowsManifests, "manifests", "windows") | ||
) | ||
|
||
func subFS(f fs.FS, segments ...string) fs.FS { | ||
f, err := fs.Sub(f, path.Join(segments...)) | ||
if err != nil { | ||
panic(err) | ||
} | ||
return f | ||
} |
This file was deleted.
Oops, something went wrong.