Skip to content

Commit 4914019

Browse files
committed
Merge branch 'master' of github.com:derailed/k9s into feat/json-log
* 'master' of github.com:derailed/k9s: (169 commits) fix: align build image Go version with go.mod (derailed#2812) Bump github.com/docker/docker (derailed#2816) Bump golangci/golangci-lint-action from 6.0.1 to 6.1.0 (derailed#2813) Add comment about Escape keybinding (derailed#2817) proper handle OwnerReference for manually created job (derailed#2772) [derailed#2773] fix freebsd build failure (derailed#2775) install copyright file into correct location (derailed#2780) fix status for completed pods in workload view (derailed#2729) update deps [Maint] Bump grype rev K9s/release v0.32.5 (derailed#2740) --- (derailed#2707) fix view sorting being reset (derailed#2736) use policy/v1 instead of policy/v1beta1 (derailed#2732) Bump alpine from 3.19.1 to 3.20.0 (derailed#2721) fix: jump to namespaceless owner reference (derailed#2718) feat: Add plugins for argo-rollouts (derailed#2711) Bump golangci/golangci-lint-action from 5.1.0 to 6.0.1 (derailed#2702) allow jumping to the owner of the resource (derailed#2700) fix: job color based on failures (derailed#2686) (derailed#2698) ...
2 parents 0c6ecc6 + 8e1a29f commit 4914019

File tree

688 files changed

+27020
-13033
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

688 files changed

+27020
-13033
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,27 +14,31 @@ assignees: ''
1414
<br/>
1515
<br/>
1616

17-
1817
**Describe the bug**
1918
A clear and concise description of what the bug is.
2019

2120
**To Reproduce**
2221
Steps to reproduce the behavior:
22+
2323
1. Go to '...'
2424
2. Click on '....'
2525
3. Scroll down to '....'
2626
4. See error
2727

28+
**Historical Documents**
29+
When applicable please include any supporting artifacts: k9s debug logs, configurations, resource manifests, ...
30+
2831
**Expected behavior**
2932
A clear and concise description of what you expected to happen.
3033

3134
**Screenshots**
3235
If applicable, add screenshots to help explain your problem.
3336

3437
**Versions (please complete the following information):**
35-
- OS: [e.g. OSX]
36-
- K9s: [e.g. 0.1.0]
37-
- K8s: [e.g. 1.11.0]
38+
39+
- OS: [e.g. OSX]
40+
- K9s: [e.g. 0.1.0]
41+
- K8s: [e.g. 1.11.0]
3842

3943
**Additional context**
4044
Add any other context about the problem here.

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,8 @@ assignees: ''
1313
<br/>
1414
<br/>
1515

16-
1716
**Is your feature request related to a problem? Please describe.**
18-
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
17+
A clear and concise description of what the problem is.
1918

2019
**Describe the solution you'd like**
2120
A clear and concise description of what you want to happen.

.github/workflows/lint.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: K9s Lint
2+
3+
on:
4+
pull_request:
5+
branches: [ main ]
6+
7+
jobs:
8+
golangci:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Checkout Code
12+
uses: actions/[email protected]
13+
14+
- name: Install Go
15+
uses: actions/[email protected]
16+
with:
17+
go-version-file: go.mod
18+
cache-dependency-path: go.sum
19+
20+
- name: Lint
21+
uses: golangci/[email protected]
22+
with:
23+
github_token: ${{ secrets.GITHUB_TOKEN }}
24+
reporter: github-pr-check

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: K9s Checks
1+
name: K9s Test
22

33
on:
44
workflow_dispatch:
@@ -13,13 +13,13 @@ on:
1313
- master
1414
jobs:
1515
build:
16-
runs-on: ubuntu-20.04
16+
runs-on: ubuntu-latest
1717
steps:
1818
- name: Checkout Code
19-
uses: actions/[email protected].1
19+
uses: actions/[email protected].6
2020

2121
- name: Install Go
22-
uses: actions/setup-go@v4.1.0
22+
uses: actions/setup-go@v5.0.1
2323
with:
2424
go-version-file: go.mod
2525
cache-dependency-path: go.sum

.gitignore

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
.envrc
55
cov.out
66
execs
7-
k9s
7+
/k9s
88
/k8s
99
dist
1010
notes
@@ -21,4 +21,6 @@ faas
2121
.settings/*
2222
demos
2323
/code
24-
kind
24+
kind
25+
*.snap
26+
/stresser

0 commit comments

Comments
 (0)