Skip to content

Commit 3f66b47

Browse files
authored
Merge pull request #140 from Slach/master
add windows support, compile successful, make test also passed, replace travis-badge to GitHub actions badge
2 parents 2d7efe9 + 50c740b commit 3f66b47

File tree

4 files changed

+25
-1
lines changed

4 files changed

+25
-1
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/kail*.exe
12
/kail
23
/kail-linux
34
/dist

.goreleaser.yml

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ builds:
1313
goos:
1414
- darwin
1515
- linux
16+
- windows
1617
goarch:
1718
- amd64
1819
- arm64

.krew/tail.yaml

+22
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,28 @@ spec:
4949
to: "."
5050
- from: LICENSE.txt
5151
to: .
52+
- {{addURIAndSha "https://github.com/boz/kail/releases/download/{{ .TagName }}/kail_{{ .TagName }}_windows_arm64.tar.gz" .TagName }}
53+
selector:
54+
matchLabels:
55+
os: windows
56+
arch: arm64
57+
bin: kail
58+
files:
59+
- from: "kail"
60+
to: "."
61+
- from: LICENSE.txt
62+
to: .
63+
- {{addURIAndSha "https://github.com/boz/kail/releases/download/{{ .TagName }}/kail_{{ .TagName }}_windows_amd64v2.tar.gz" .TagName }}
64+
selector:
65+
matchLabels:
66+
os: windows
67+
arch: amd64
68+
bin: kail
69+
files:
70+
- from: "kail"
71+
to: "."
72+
- from: LICENSE.txt
73+
to: .
5274
homepage: https://github.com/boz/kail
5375
shortDescription: Stream logs from multiple pods and containers using simple, dynamic source selection.
5476
description: |-

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# kail: kubernetes tail [![Build Status](https://travis-ci.org/boz/kail.svg?branch=master)](https://travis-ci.org/boz/kail)
1+
# kail: kubernetes tail [![Build Status](https://github.com/boz/kail/actions/workflows/ci.yml/badge.svg)](https://github.com/boz/kail/actions/workflows/ci.yml)
22

33
Kubernetes tail. Streams logs from all containers of all matched pods. Match pods by service, replicaset, deployment, and others. Adjusts to a changing cluster - pods are added and removed from logging as they fall in or out of the selection.
44

0 commit comments

Comments
 (0)