Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
name: Bug report
about: Tell us about a problem you are experiencing
title: ''
labels: bug
assignees: ''

---

**What steps did you take:**
[A clear and concise description steps that can be used to reproduce the problem.]

**What happened:**
[A small description of the issue]

**What did you expect:**
[A description of what was expected]

**Anything else you would like to add:**
[Additional information that will assist in solving the issue.]

**Additional context:**
Add any other context about the problem here.

**Environment:**

- Kubernetes version (execute `kubectl version`):
- kapp-controller version (execute `kubectl get deployment -n kapp-controller kapp-controller -o yaml` and the annotation is `kbld.k14s.io/images`):
38 changes: 0 additions & 38 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

17 changes: 17 additions & 0 deletions .github/ISSUE_TEMPLATE/feature-request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: enhancement
assignees: ''

---

**Describe the problem/challenge you have:**
[A description of the current challenge that you are experiencing.]

**Describe the solution you'd like:**
[A clear and concise description of what you want to happen. If applicable a visual representation of the UX.]

**Anything else you would like to add:**
[Additional information that will assist in solving the issue.]
20 changes: 0 additions & 20 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ jobs:
registry-server: ghcr.io
registry-username: ${{ github.actor }}
image: ${{ github.repository }}
version: 0.6.1+kadras.1
version: 0.6.2
secrets:
pull-request-token: ${{ secrets.GH_ORG_PAT }}
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Metrics Server

<a href="https://slsa.dev/spec/v0.1/levels"><img src="https://slsa.dev/images/gh-badge-level3.svg" alt="The SLSA Level 3 badge"></a>

This project provides a [Carvel package](https://carvel.dev/kapp-controller/docs/latest/packaging) for [Metrics Server](https://github.com/kubernetes-sigs/metrics-server), a scalable and efficient source of container resource metrics for Kubernetes built-in autoscaling pipelines.

## Prerequisites
Expand Down Expand Up @@ -29,7 +31,7 @@ Then, install the Metrics Server package.
```shell
kctrl package install -i metrics-server \
-p metrics-server.packages.kadras.io \
-v 0.6.1+kadras.1 \
-v 0.6.2 \
-n kadras-packages
```

Expand Down Expand Up @@ -76,7 +78,7 @@ Then, reference it from the `kctrl` command when installing or upgrading the pac
```shell
kctrl package install -i metrics-server \
-p metrics-server.packages.kadras.io \
-v 0.6.1+kadras.1 \
-v 0.6.2 \
-n kadras-packages \
--values-file values.yml
```
Expand Down Expand Up @@ -120,6 +122,6 @@ This package is based on the original Metrics Server package used in [Tanzu Comm

## Supply Chain Security

This project is compliant with level 2 of the [SLSA Framework](https://slsa.dev).
This project is compliant with level 3 of the [SLSA Framework](https://slsa.dev).

<img src="https://slsa.dev/images/SLSA-Badge-full-level2.svg" alt="The SLSA Level 2 badge" width=200>
<img src="https://slsa.dev/images/SLSA-Badge-full-level3.svg" alt="The SLSA Level 3 badge" width=200>
1 change: 0 additions & 1 deletion package/config/kapp-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ rebaseRules:
- path: [spec, caBundle]
type: remove
resourceMatchers:
- apiVersionKindMatcher: {apiVersion: apiregistration.k8s.io/v1beta1, kind: APIService}
- apiVersionKindMatcher: {apiVersion: apiregistration.k8s.io/v1, kind: APIService}
- path: [ spec, selector, matchLabels, kapp.k14s.io/app ]
type: copy
Expand Down
2 changes: 1 addition & 1 deletion package/config/upstream/components.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ spec:
- --kubelet-preferred-address-types=InternalIP,ExternalIP,Hostname
- --kubelet-use-node-status-port
- --metric-resolution=15s
image: k8s.gcr.io/metrics-server/metrics-server:v0.6.1
image: k8s.gcr.io/metrics-server/metrics-server:v0.6.2
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 3
Expand Down
4 changes: 2 additions & 2 deletions package/vendir.lock.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: vendir.k14s.io/v1alpha1
directories:
- contents:
- githubRelease:
tag: v0.6.1
url: https://api.github.com/repos/kubernetes-sigs/metrics-server/releases/59100288
tag: v0.6.2
url: https://api.github.com/repos/kubernetes-sigs/metrics-server/releases/84197562
path: .
path: config/upstream
kind: LockConfig
2 changes: 1 addition & 1 deletion package/vendir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ directories:
- githubRelease:
disableAutoChecksumValidation: true
slug: kubernetes-sigs/metrics-server
tag: v0.6.1
tag: v0.6.2
includePaths:
- components.yaml
path: .
Expand Down