mirror of
https://github.com/openshift/installer.git
synced 2026-02-07 03:47:13 +01:00
- Renamed `ipxeBaseURL` to more generic `bootArtifactsBaseURL` - Removed unwanted lint - Added integration tests to create minimal ISO for external platform with and without bootArtifactsBaseURL in agent-config.yaml - Fixed existing integration tests to include change of name from `ipxeBaseURL` to more generic `bootArtifactsBaseURL` - Added BootArtifactsBaseUrl and bootArtifactsPath into parent asset AgentArtifacts - AgentArtifacts also depends on AgentConfig asset - Moved common code to generate rootfs.img file into extractRootFS() in AgentArtifacts asset - If the bootArtifactsBaseURL is specified, construct the custom rootfs URL otherwise default to the URL from the RHCOS streams file - For external platform when the bootArtifactsBaseUrl is specified, output the rootfs file alongside the minimal ISO - For all other platforms, continue generating full ISO (no explicit rootfs.img is generated) - Vendor changes after updating github.com/openshift/assisted-image-service dependency - set IMAGE_TYPE_ISO to 'minimal-iso' in create-cluster-and-infraenv.service.template when using external platform - Log an info message to upload CCM manifests Signed-off-by: Pawan Pinjarkar <ppinjark@redhat.com>
13 lines
498 B
Go
13 lines
498 B
Go
// Copyright 2017 Google Inc. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// +build js
|
|
|
|
package uuid
|
|
|
|
// getHardwareInterface returns nil values for the JS version of the code.
|
|
// This removes the "net" dependency, because it is not used in the browser.
|
|
// Using the "net" library inflates the size of the transpiled JS code by 673k bytes.
|
|
func getHardwareInterface(name string) (string, []byte) { return "", nil }
|