Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release-1.6.3 #78

Merged
merged 1 commit into from
Apr 2, 2024
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
16 changes: 8 additions & 8 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -86,23 +86,23 @@ release-helm:

release: release-docker release-helm helm-docs
# Prod release
# ex. make VERSION=1.6.2 release
# ex. make VERSION=1.6.3 release
# Prerelease Candidate
# ex. make VERSION=1.6.3-rc01 release

release-github:
# Prod release
# ex. make VERSION=1.6.3 release-github
gh release create ${VERSION} --generate-notes
gh release upload ${VERSION} "chart/k8s-ephemeral-storage-metrics-${VERSION}.tgz"
rm chart/k8s-ephemeral-storage-metrics-*.tgz

prerelease-github:
# Prerelease Candidate
# ex. make VERSION=1.6.3-rc01 prerelease-github
gh release create ${VERSION} --generate-notes --prerelease
gh release upload ${VERSION} "chart/k8s-ephemeral-storage-metrics-${VERSION}.tgz"
rm chart/k8s-ephemeral-storage-metrics-*.tgz

release-github:
# Prod release
# ex. make VERSION=1.6.2 release-github
gh release create ${VERSION} --generate-notes
gh release upload ${VERSION} "chart/k8s-ephemeral-storage-metrics-${VERSION}.tgz"
rm chart/k8s-ephemeral-storage-metrics-*.tgz

github_login:
gh auth login --web --scopes=read:packages,write:packages
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ helm upgrade --install my-deployment k8s-ephemeral-storage-metrics/k8s-ephemeral
| dev | object | `{"enabled":false,"grow":{"image":"ghcr.io/jmcgrath207/k8s-ephemeral-storage-grow-test:latest","imagePullPolicy":"IfNotPresent"},"shrink":{"image":"ghcr.io/jmcgrath207/k8s-ephemeral-storage-shrink-test:latest","imagePullPolicy":"IfNotPresent"}}` | For local development or testing that will deploy grow and shrink pods and debug service |
| image.imagePullPolicy | string | `"IfNotPresent"` | |
| image.repository | string | `"ghcr.io/jmcgrath207/k8s-ephemeral-storage-metrics"` | |
| image.tag | string | `"1.6.2"` | |
| image.tag | string | `"1.6.3"` | |
| interval | int | `15` | Polling node rate for exporter |
| log_level | string | `"info"` | |
| max_node_concurrency | int | `10` | Max number of concurrent query requests to the kubernetes API. |
Expand All @@ -49,13 +49,17 @@ helm upgrade --install my-deployment k8s-ephemeral-storage-metrics/k8s-ephemeral
| pprof | bool | `false` | Enable Pprof |
| prometheus.enable | bool | `true` | |
| prometheus.release | string | `"kube-prometheus-stack"` | |
| serviceMonitor.metricRelabelings | list | `[]` | |
| serviceMonitor.podTargetLabels | list | `[]` | |
| serviceMonitor.relabelings | list | `[]` | |
| serviceMonitor.targetLabels | list | `[]` | |
| tolerations | list | `[]` | |

## Contribute

### Start Kind
### Start minikube
```bash
make new_kind
make new_minikube
```

### Run locally
Expand Down
4 changes: 2 additions & 2 deletions chart/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: k8s-ephemeral-storage-metrics
version: 1.6.2
appVersion: 1.6.2
version: 1.6.3
appVersion: 1.6.3
kubeVersion: ">=1.21.0-0"
description: Ephemeral storage metrics for prometheus operator.
home: https://github.com/jmcgrath207/k8s-ephemeral-storage-metrics
Expand Down
10 changes: 7 additions & 3 deletions chart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ helm upgrade --install my-deployment k8s-ephemeral-storage-metrics/k8s-ephemeral
| dev | object | `{"enabled":false,"grow":{"image":"ghcr.io/jmcgrath207/k8s-ephemeral-storage-grow-test:latest","imagePullPolicy":"IfNotPresent"},"shrink":{"image":"ghcr.io/jmcgrath207/k8s-ephemeral-storage-shrink-test:latest","imagePullPolicy":"IfNotPresent"}}` | For local development or testing that will deploy grow and shrink pods and debug service |
| image.imagePullPolicy | string | `"IfNotPresent"` | |
| image.repository | string | `"ghcr.io/jmcgrath207/k8s-ephemeral-storage-metrics"` | |
| image.tag | string | `"1.6.2"` | |
| image.tag | string | `"1.6.3"` | |
| interval | int | `15` | Polling node rate for exporter |
| log_level | string | `"info"` | |
| max_node_concurrency | int | `10` | Max number of concurrent query requests to the kubernetes API. |
Expand All @@ -32,13 +32,17 @@ helm upgrade --install my-deployment k8s-ephemeral-storage-metrics/k8s-ephemeral
| pprof | bool | `false` | Enable Pprof |
| prometheus.enable | bool | `true` | |
| prometheus.release | string | `"kube-prometheus-stack"` | |
| serviceMonitor.metricRelabelings | list | `[]` | |
| serviceMonitor.podTargetLabels | list | `[]` | |
| serviceMonitor.relabelings | list | `[]` | |
| serviceMonitor.targetLabels | list | `[]` | |
| tolerations | list | `[]` | |

## Contribute

### Start Kind
### Start minikube
```bash
make new_kind
make new_minikube
```

### Run locally
Expand Down
24 changes: 23 additions & 1 deletion chart/index.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,28 @@
apiVersion: v1
entries:
k8s-ephemeral-storage-metrics:
- annotations:
artifacthub.io/license: MIT
artifacthub.io/links: |
- name: Documentation
url: https://github.com/jmcgrath207/k8s-ephemeral-storage-metrics
artifacthub.io/prerelease: "false"
apiVersion: v2
appVersion: 1.6.3
created: "2024-04-01T23:09:03.7444621-05:00"
description: Ephemeral storage metrics for prometheus operator.
digest: dbafb06b86bf0f98ce42e5acad8ce4a61b54f930d7734d9e9d1ee46a52264bef
home: https://github.com/jmcgrath207/k8s-ephemeral-storage-metrics
keywords:
- kubernetes
- metrics
kubeVersion: '>=1.21.0-0'
name: k8s-ephemeral-storage-metrics
sources:
- https://github.com/jmcgrath207/k8s-ephemeral-storage-metrics
urls:
- https://github.com/jmcgrath207/k8s-ephemeral-storage-metrics/releases/download/1.6.3/k8s-ephemeral-storage-metrics-1.6.3.tgz
version: 1.6.3
- annotations:
artifacthub.io/license: MIT
artifacthub.io/links: |
Expand Down Expand Up @@ -463,4 +485,4 @@ entries:
urls:
- https://github.com/jmcgrath207/k8s-ephemeral-storage-metrics/releases/download/1.0.0/k8s-ephemeral-storage-metrics-1.0.0.tgz
version: 1.0.0
generated: "2024-03-30T22:05:20.840950054-05:00"
generated: "2024-04-01T23:09:03.743877501-05:00"
2 changes: 1 addition & 1 deletion chart/values.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
image:
repository: ghcr.io/jmcgrath207/k8s-ephemeral-storage-metrics
tag: 1.6.2
tag: 1.6.3
imagePullPolicy: IfNotPresent

serviceMonitor:
Expand Down
4 changes: 2 additions & 2 deletions tests/charts/many-pods/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ helm upgrade --install my-deployment k8s-ephemeral-storage-metrics/k8s-ephemeral

## Contribute

### Start Kind
### Start minikube
```bash
make new_kind
make new_minikube
```

### Run locally
Expand Down
Loading