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

feat(promethus): data volume securityContext 변경 #1

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,5 @@ minikube start
```bash
minikube addons list
minikube addons enable metrics-server
minikube dashboard
minikube addons enable dashboard
```

29 changes: 29 additions & 0 deletions cert-manager/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# CertManager

## Installation

### cmctl

https://cert-manager.io/docs/reference/cmctl/#install

```bash
brew install cmctl
```

### chart

> dependencies prometheus

```bash
helm repo add jetstack https://charts.jetstack.io
helm repo update

helm install \
cert-manager jetstack/cert-manager \
--namespace cert-manager \
--create-namespace \
--version v1.13.0 \
--set installCRDs=true \
--set prometheus.enabled=true \ # Example: disabling prometheus using a Helm parameter
--set webhook.timeoutSeconds=4 # Example: changing the webhook timeout using a Helm parameter
```
2 changes: 2 additions & 0 deletions prometheus/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@
helm repo add prometheus-community https://prometheus-community.github.io/helm-charts
helm install prometheus prometheus-community/prometheus
```

- https://github.com/prometheus/prometheus/issues/5976 현재 permission 문제로 minikube에서 실행불가
Loading