Skip to content

Commit

Permalink
Merge branch 'master' of github.com:derailed/k9s into feat/json-log
Browse files Browse the repository at this point in the history
* '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)
  ...
  • Loading branch information
rm-hull committed Aug 12, 2024
2 parents 0c6ecc6 + 8e1a29f commit 4914019
Show file tree
Hide file tree
Showing 688 changed files with 27,020 additions and 13,033 deletions.
12 changes: 8 additions & 4 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,27 +14,31 @@ assignees: ''
<br/>
<br/>


**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:

1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Historical Documents**
When applicable please include any supporting artifacts: k9s debug logs, configurations, resource manifests, ...

**Expected behavior**
A clear and concise description of what you expected to happen.

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

**Versions (please complete the following information):**
- OS: [e.g. OSX]
- K9s: [e.g. 0.1.0]
- K8s: [e.g. 1.11.0]

- OS: [e.g. OSX]
- K9s: [e.g. 0.1.0]
- K8s: [e.g. 1.11.0]

**Additional context**
Add any other context about the problem here.
3 changes: 1 addition & 2 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,8 @@ assignees: ''
<br/>
<br/>


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

**Describe the solution you'd like**
A clear and concise description of what you want to happen.
Expand Down
24 changes: 24 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: K9s Lint

on:
pull_request:
branches: [ main ]

jobs:
golangci:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4.1.6

- name: Install Go
uses: actions/setup-go@v5.0.1
with:
go-version-file: go.mod
cache-dependency-path: go.sum

- name: Lint
uses: golangci/golangci-lint-action@v6.1.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
reporter: github-pr-check
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: K9s Checks
name: K9s Test

on:
workflow_dispatch:
Expand All @@ -13,13 +13,13 @@ on:
- master
jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4.1.1
uses: actions/checkout@v4.1.6

- name: Install Go
uses: actions/setup-go@v4.1.0
uses: actions/setup-go@v5.0.1
with:
go-version-file: go.mod
cache-dependency-path: go.sum
Expand Down
6 changes: 4 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
.envrc
cov.out
execs
k9s
/k9s
/k8s
dist
notes
Expand All @@ -21,4 +21,6 @@ faas
.settings/*
demos
/code
kind
kind
*.snap
/stresser
Loading

0 comments on commit 4914019

Please sign in to comment.