This repository has been archived by the owner on Jan 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 558
/
Copy pathutil.go
289 lines (260 loc) · 9.75 KB
/
util.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
package util
import (
"fmt"
"io/ioutil"
"log"
"net/http"
"os"
"os/exec"
"path/filepath"
"strings"
"time"
kerrors "k8s.io/apimachinery/pkg/util/errors"
"github.com/Azure/acs-engine/pkg/api"
"github.com/Azure/acs-engine/pkg/api/common"
)
func printCmd(cmd *exec.Cmd) {
fmt.Printf("\n$ %s\n", strings.Join(cmd.Args, " "))
}
// ApplyFromTemplate processes and creates the provided templateName/templateNamespace template
// in the provided namespace.
func ApplyFromTemplate(templateName, templateNamespace, namespace string) error {
processCmd := exec.Command("oc", "process", templateName, "-n", templateNamespace)
printCmd(processCmd)
out, err := processCmd.CombinedOutput()
if err != nil {
return fmt.Errorf("cannot process template %s: %v\noutput: %s", templateName, err, string(out))
}
if err := ioutil.WriteFile(templateName, out, 0644); err != nil {
return fmt.Errorf("cannot create tempfile for processed template %s: %v", templateName, err)
}
defer os.Remove(templateName)
createCmd := exec.Command("oc", "apply", "-n", namespace, "-f", templateName)
printCmd(createCmd)
out, err = createCmd.CombinedOutput()
if err != nil {
return fmt.Errorf("cannot apply processed template %s: %v\noutput: %s", templateName, err, string(out))
}
return nil
}
// WaitForDeploymentConfig waits until the provided deploymentconfig namespace/name
// gets deployed.
func WaitForDeploymentConfig(name, namespace string) error {
cmd := exec.Command("oc", "rollout", "status", fmt.Sprintf("dc/%s", name), "-n", namespace)
printCmd(cmd)
out, err := cmd.CombinedOutput()
if err != nil {
log.Printf("Error trying to see the rollout status of dc/%s: %s", name, string(out))
return err
}
return nil
}
// GetHost expects the name and namespace of a route in order to
// return its host.
func GetHost(name, namespace string) (string, error) {
cmd := exec.Command("oc", "get", fmt.Sprintf("route/%s", name), "-n", namespace, "-o", "jsonpath={.spec.host}")
printCmd(cmd)
out, err := cmd.CombinedOutput()
if err != nil {
log.Printf("Error trying to get the hostname of route/%s: %s", name, string(out))
return "", err
}
return string(out), nil
}
// TestHost tries to access host and retries maxRetries times with a retryDelay
// that is doubled on every retry.
func TestHost(host string, maxRetries int, retryDelay time.Duration) error {
backoff := retryDelay
url := fmt.Sprintf("http://%s", host)
resp, err := http.Get(url)
if err == nil && resp.StatusCode == http.StatusOK {
return nil
}
if err == nil {
log.Printf("got status %q while trying to access %s", resp.Status, host)
resp.Body.Close()
} else {
log.Printf("error while trying to access %s: %v", host, err)
}
for retries := 1; retries <= maxRetries; retries++ {
log.Printf("Retry #%d to access %s", retries, host)
resp, err = http.Get(url)
if err != nil {
log.Printf("error while trying to access %s: %v", host, err)
continue
}
resp.Body.Close()
if resp.StatusCode == http.StatusOK {
return nil
}
log.Printf("got status %q while trying to access %s", resp.Status, host)
time.Sleep(backoff)
backoff *= 2
}
if err != nil {
return err
}
return fmt.Errorf("unexpected response status: %v", resp.Status)
}
// DumpNodes dumps information about nodes.
func DumpNodes() (string, error) {
cmd := exec.Command("oc", "get", "nodes", "-o", "wide")
printCmd(cmd)
out, err := cmd.CombinedOutput()
if err != nil {
log.Printf("Error trying to list nodes: %s", string(out))
return "", err
}
return string(out), nil
}
// DumpPods dumps the pods from all namespaces.
func DumpPods() (string, error) {
cmd := exec.Command("oc", "get", "pods", "--all-namespaces", "-o", "wide")
printCmd(cmd)
out, err := cmd.CombinedOutput()
if err != nil {
log.Printf("Error trying to list pods from all namespaces: %s", string(out))
return "", err
}
return string(out), nil
}
// RunDiagnostics runs the openshift diagnostics command.
func RunDiagnostics() (string, error) {
cmd := exec.Command("oc", "adm", "diagnostics")
printCmd(cmd)
out, err := cmd.CombinedOutput()
if err != nil {
log.Printf("Error trying to run diagnostics: %s", string(out))
return "", err
}
return string(out), nil
}
// FetchLogs returns logs for the provided kind/name in namespace.
func FetchLogs(kind, namespace, name string) string {
cmd := exec.Command("oc", "logs", fmt.Sprintf("%s/%s", kind, name), "-n", namespace)
printCmd(cmd)
out, err := cmd.CombinedOutput()
if err != nil {
return fmt.Sprintf("Error trying to fetch logs from %s/%s in %s: %s", kind, name, namespace, string(out))
}
return string(out)
}
// FetchOpenShiftLogs returns logs for all OpenShift components
// (control plane and infra).
func FetchOpenShiftLogs(distro, version, sshKeyPath, adminName, name, location, logPath string) {
if err := fetchControlPlaneLogs(distro, version, sshKeyPath, adminName, name, location, logPath); err != nil {
log.Printf("Cannot fetch logs for control plane components: %v", err)
}
if err := fetchInfraLogs(logPath); err != nil {
log.Printf("Cannot fetch logs for infra components: %v", err)
}
}
// fetchControlPlaneLogs returns logs for Openshift control plane components.
func fetchControlPlaneLogs(distro, version, sshKeyPath, adminName, name, location, logPath string) error {
sshAddress := fmt.Sprintf("%s@%s.%s.cloudapp.azure.com", adminName, name, location)
switch version {
case common.OpenShiftVersion3Dot9Dot0:
return fetch39ControlPlaneLogs(distro, sshKeyPath, sshAddress, logPath)
case common.OpenShiftVersionUnstable:
return fetchUnstableControlPlaneLogs(distro, sshKeyPath, sshAddress, name, logPath)
default:
panic(fmt.Sprintf("BUG: invalid OpenShift version %s", version))
}
}
func fetch39ControlPlaneLogs(distro, sshKeyPath, sshAddress, logPath string) error {
var errs []error
for _, service := range getSystemdServices(distro) {
out := fetchSystemdServiceLog(sshKeyPath, sshAddress, service)
path := filepath.Join(logPath, service)
if err := ioutil.WriteFile(path, out, 0644); err != nil {
errs = append(errs, err)
}
}
return kerrors.NewAggregate(errs)
}
func getSystemdServices(distro string) []string {
services := []string{"etcd"}
switch api.Distro(distro) {
case api.OpenShift39RHEL:
services = append(services, "atomic-openshift-master-api", "atomic-openshift-master-controllers", "atomic-openshift-node")
case api.OpenShiftCentOS:
services = append(services, "origin-master-api", "origin-master-controllers", "origin-node")
default:
log.Printf("Will not gather journal for the control plane because invalid OpenShift distro was specified: %q", distro)
}
return services
}
func fetchSystemdServiceLog(sshKeyPath, sshAddress, service string) []byte {
cmdToExec := fmt.Sprintf("sudo journalctl -u %s.service", service)
cmd := exec.Command("ssh", "-i", sshKeyPath, "-o", "ConnectTimeout=10", "-o", "StrictHostKeyChecking=no", "-o", "UserKnownHostsFile=/dev/null", sshAddress, cmdToExec)
out, err := cmd.Output()
if err != nil {
log.Printf("Cannot fetch logs for systemd service %q: %v", service, err)
}
return out
}
type resource struct {
kind string
namespace string
name string
}
func (r resource) String() string {
return fmt.Sprintf("%s_%s_%s", r.namespace, r.kind, r.name)
}
// TODO: Promote to 3.10 when the time comes
func fetchUnstableControlPlaneLogs(distro, sshKeyPath, sshAddress, name, logPath string) error {
controlPlane := []resource{
{kind: "pod", namespace: "kube-system", name: fmt.Sprintf("master-api-ocp-master-%s-0", name)},
{kind: "pod", namespace: "kube-system", name: fmt.Sprintf("master-controllers-ocp-master-%s-0", name)},
{kind: "pod", namespace: "kube-system", name: fmt.Sprintf("master-etcd-ocp-master-%s-0", name)},
}
var errs []error
for _, r := range controlPlane {
log := FetchLogs(r.kind, r.namespace, r.name)
path := filepath.Join(logPath, r.name)
if err := ioutil.WriteFile(path, []byte(log), 0644); err != nil {
errs = append(errs, err)
}
}
for _, service := range getSystemdServices(distro) {
// 3.10+ deployments run only the node process as a systemd service
if service != "atomic-openshift-node" && service != "origin-node" {
continue
}
out := fetchSystemdServiceLog(sshKeyPath, sshAddress, service)
path := filepath.Join(logPath, service)
if err := ioutil.WriteFile(path, out, 0644); err != nil {
errs = append(errs, err)
}
}
return kerrors.NewAggregate(errs)
}
// fetchInfraLogs returns logs for Openshift infra components.
// TODO: Eventually we may need to version this too.
func fetchInfraLogs(logPath string) error {
infraResources := []resource{
// TODO: Maybe collapse this list and the actual readiness check tests
// in openshift e2e.
{kind: "deploymentconfig", namespace: "default", name: "router"},
{kind: "deploymentconfig", namespace: "default", name: "docker-registry"},
{kind: "deploymentconfig", namespace: "default", name: "registry-console"},
{kind: "statefulset", namespace: "openshift-infra", name: "bootstrap-autoapprover"},
{kind: "statefulset", namespace: "openshift-metrics", name: "prometheus"},
{kind: "daemonset", namespace: "kube-service-catalog", name: "apiserver"},
{kind: "daemonset", namespace: "kube-service-catalog", name: "controller-manager"},
{kind: "deploymentconfig", namespace: "openshift-ansible-service-broker", name: "asb"},
{kind: "deploymentconfig", namespace: "openshift-ansible-service-broker", name: "asb-etcd"},
{kind: "daemonset", namespace: "openshift-template-service-broker", name: "apiserver"},
{kind: "deployment", namespace: "openshift-web-console", name: "webconsole"},
}
var errs []error
for _, r := range infraResources {
log := FetchLogs(r.kind, r.namespace, r.name)
path := filepath.Join(logPath, "infra-"+r.String())
err := ioutil.WriteFile(path, []byte(log), 0644)
if err != nil {
errs = append(errs, err)
}
}
return kerrors.NewAggregate(errs)
}