forked from coreos/ignition
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gce.go
50 lines (43 loc) · 1.51 KB
/
gce.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// Copyright 2016 CoreOS, 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 gce provider fetches a remote configuration from the gce user-data
// metadata service URL.
package gce
import (
"net/url"
"github.com/coreos/ignition/config/validate/report"
"github.com/coreos/ignition/internal/config/types"
"github.com/coreos/ignition/internal/providers/util"
"github.com/coreos/ignition/internal/resource"
)
var (
userdataUrl = url.URL{
Scheme: "http",
Host: "metadata.google.internal",
Path: "computeMetadata/v1/instance/attributes/user-data",
}
metadataHeaderKey = "Metadata-Flavor"
metadataHeaderVal = "Google"
)
func FetchConfig(f resource.Fetcher) (types.Config, report.Report, error) {
headers := resource.ConfigHeaders
headers.Set(metadataHeaderKey, metadataHeaderVal)
data, err := f.FetchToBuffer(userdataUrl, resource.FetchOptions{
Headers: headers,
})
if err != nil && err != resource.ErrNotFound {
return types.Config{}, report.Report{}, err
}
return util.ParseConfig(f.Logger, data)
}