forked from stern/stern
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yaml
51 lines (49 loc) · 1.53 KB
/
.goreleaser.yaml
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
builds:
- env:
- CGO_ENABLED=0
ldflags:
- -s
- -w
- -X github.com/stern/stern/cmd.version={{.Version}}
- -X github.com/stern/stern/cmd.commit={{.Commit}}
- -X github.com/stern/stern/cmd.date={{.Date}}
goos:
- linux
- windows
- darwin
goarch:
- amd64
- arm
- arm64
archives:
- builds:
- stern
name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
format: tar.gz
files:
- LICENSE
wrap_in_directory: false
checksum:
name_template: 'checksums.txt'
changelog:
sort: asc
dockers:
- image_templates:
- "ghcr.io/stern/stern:latest"
- "ghcr.io/stern/stern:{{ .Major }}"
- "ghcr.io/stern/stern:{{ .Major }}.{{ .Minor }}"
- "ghcr.io/stern/stern:{{ .Major }}.{{ .Minor }}.{{ .Patch }}"
krews:
- skip_upload: true
homepage: https://github.com/stern/stern
description: |
Stern allows you to `tail` multiple pods on Kubernetes and multiple containers
within the pod. Each result is color coded for quicker debugging.
The query is a regular expression so the pod name can easily be filtered and
you don't need to specify the exact id (for instance omitting the deployment
id). If a pod is deleted it gets removed from tail and if a new pod is added it
automatically gets tailed.
When a pod contains multiple containers Stern can tail all of them too without
having to do this manually for each one. Simply specify the `container` flag to
limit what containers to show. By default all containers are listened to.
short_description: Multi pod and container log tailing