Prometheus

Prometheus

  1. Prometheus

Prometheus

helm repo add prometheus-community https://prometheus-community.github.io/helm-charts
helm repo update
#helm pull prometheus-community/kube-prometheus-stack
#tar zxfv kube-prometheus-stack-69.2.3.tgz
#cd kube-prometheus-stack/
helm show values prometheus-community/kube-prometheus-stack > values.yaml
code values.yaml
adminPassword:
kubectl create ns monitoring
#helm install prometheus . -n monitoring -f values.yaml
helm install prometheus prometheus-community/kube-prometheus-stack -n monitoring -f values.yaml
minikube service  prometheus-grafana -n monitoring

Timezone

Profile > Timezone > Asia/Seoul

Kiali Install

Kiali Install

  1. Kiali Install

Kiali Install

kubectl apply -f https://raw.githubusercontent.com/istio/istio/release-1.24/samples/addons/kiali.yaml

istioctl dashboard kiali

Istio Examples

Istio Examples

  1. istio examples

istio examples

https://istiobyexample.dev/

istioctl install --set profile=demo -y

gateway.yaml

apiVersion: networking.istio.io/v1alpha3
kind: Gateway
metadata:
  name: hello-gateway
spec:
  selector:
    istio: ingressgateway # use the default IngressGateway
  servers:
  - port:
      number: 80
      name: http
      protocol: HTTP
    hosts:
    - "hello.com"

service.yaml

apiVersion: networking.istio.io/v1alpha3
kind: VirtualService
metadata:
  name: frontend-ingress
spec:
  hosts:
  - "hello.com"
  gateways:
  - hello-gateway
  http:
  - route:
    - destination:
        host: hello.default.svc.cluster.local
        port:
          number: 80
k apply -f gateway.yaml
gateway.networking.istio.io/hello-gateway created

k apply -f service.yaml
virtualservice.networking.istio.io/frontend-ingress created

Pagination


© 2018. All rights reserved.

Powered by Hydejack v8.4.0