Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

same insecure repo is accessed over http and https #9543

Open
drewp opened this issue Oct 10, 2024 · 0 comments
Open

same insecure repo is accessed over http and https #9543

drewp opened this issue Oct 10, 2024 · 0 comments

Comments

@drewp
Copy link

drewp commented Oct 10, 2024

(Followup to #3951, #3890)

I am having trouble with multiplatform builds, but there seems to be another issue with insecureRegistries. Note these lines in the trace below:

  • 58,65 taste whether the registry is https
  • 73,82,etc use http
  • 100 tastes it again
  • this goes on through 411
  • 454 try https
  • 464 fail (!)

I expected that last one to fall back to http as well, if not for the whole skaffold run to use http only (since I said my registry is http).

skaffold.yaml

apiVersion: skaffold/v4beta11
kind: Config
metadata:
  name: node-logging-agent
build:
  artifacts:
    - image: reg:5000/serve_filebeat_metrics
      docker:
        dockerfile: Dockerfile.metrics
      platforms: 
        - linux/amd64
        - linux/arm64
  tagPolicy:
    dateTime:
      format: "2006-01-02_15-04-05"
      timezone: "Local"
  insecureRegistries:
    - reg:5000
manifests:
  rawYaml:
    - deploy.yaml

Dockerfile.metrics

FROM python:3.12-alpine
COPY serve_filebeat_metrics.py /opt
CMD ["python3", "/opt/serve_filebeat_metrics.py"]

skaffold -v trace build


     1	time="2024-10-10T12:32:39-07:00" level=debug msg="skaffold API not starting as it's not requested" subtask=-1 task=DevLoop
     2	time="2024-10-10T12:32:39-07:00" level=info msg="Skaffold &{Version:v2.13.2 ConfigVersion:skaffold/v4beta11 GitVersion: GitCommit:64621312014d9d749790bfee13cb459895a0cd5f BuildDate:2024-08-21T12:22:10Z GoVersion:go1.22.4 Compiler:gc Platform:linux/amd64 User:}" subtask=-1 task=DevLoop
     3	time="2024-10-10T12:32:39-07:00" level=info msg="Loaded Skaffold defaults from \"/home/drewp/.skaffold/config\"" subtask=-1 task=DevLoop
     4	time="2024-10-10T12:32:39-07:00" level=debug msg="found config for context \"default\"" subtask=-1 task=DevLoop
     5	time="2024-10-10T12:32:39-07:00" level=debug msg="parsed 1 configs from configuration file /my/serv/victorialogs/node-logging-agent/skaffold.yaml" subtask=-1 task=DevLoop
     6	time="2024-10-10T12:32:39-07:00" level=debug msg="Defaulting build type to local build" subtask=-1 task=DevLoop
     7	time="2024-10-10T12:32:39-07:00" level=debug msg="Found raw k8s manifests without cloud run deploy, adding kubectl deployer" subtask=-1 task=DevLoop
     8	time="2024-10-10T12:32:39-07:00" level=info msg="map entry found when executing locate for &{reg:5000/serve_filebeat_metrics . <nil> {0xc000bdad10 <nil> <nil> <nil> <nil> <nil> <nil>} [] {[] []} [linux/amd64 linux/arm64] } of type *latest.Artifact and pointer: 824640443472" subtask=-1 task=DevLoop
     9	time="2024-10-10T12:32:39-07:00" level=trace msg="validating yamltags of struct SkaffoldConfig" subtask=-1 task=DevLoop
    10	time="2024-10-10T12:32:39-07:00" level=trace msg="validating yamltags of struct Metadata" subtask=-1 task=DevLoop
    11	time="2024-10-10T12:32:39-07:00" level=trace msg="validating yamltags of struct Pipeline" subtask=-1 task=DevLoop
    12	time="2024-10-10T12:32:39-07:00" level=trace msg="validating yamltags of struct BuildConfig" subtask=-1 task=DevLoop
    13	time="2024-10-10T12:32:39-07:00" level=trace msg="validating yamltags of struct BuildHooks" subtask=-1 task=DevLoop
    14	time="2024-10-10T12:32:39-07:00" level=trace msg="validating yamltags of struct Artifact" subtask=-1 task=DevLoop
    15	time="2024-10-10T12:32:39-07:00" level=trace msg="validating yamltags of struct ArtifactType" subtask=-1 task=DevLoop
    16	time="2024-10-10T12:32:39-07:00" level=trace msg="validating yamltags of struct DockerArtifact" subtask=-1 task=DevLoop
    17	time="2024-10-10T12:32:39-07:00" level=trace msg="validating yamltags of struct BuildHooks" subtask=-1 task=DevLoop
    18	time="2024-10-10T12:32:39-07:00" level=trace msg="validating yamltags of struct TagPolicy" subtask=-1 task=DevLoop
    19	time="2024-10-10T12:32:39-07:00" level=trace msg="validating yamltags of struct DateTimeTagger" subtask=-1 task=DevLoop
    20	time="2024-10-10T12:32:39-07:00" level=trace msg="validating yamltags of struct BuildType" subtask=-1 task=DevLoop
    21	time="2024-10-10T12:32:39-07:00" level=trace msg="validating yamltags of struct LocalBuild" subtask=-1 task=DevLoop
    22	time="2024-10-10T12:32:39-07:00" level=trace msg="validating yamltags of struct RenderConfig" subtask=-1 task=DevLoop
    23	time="2024-10-10T12:32:39-07:00" level=trace msg="validating yamltags of struct Generate" subtask=-1 task=DevLoop
    24	time="2024-10-10T12:32:39-07:00" level=trace msg="validating yamltags of struct RenderHooks" subtask=-1 task=DevLoop
    25	time="2024-10-10T12:32:39-07:00" level=trace msg="validating yamltags of struct DeployConfig" subtask=-1 task=DevLoop
    26	time="2024-10-10T12:32:39-07:00" level=trace msg="validating yamltags of struct DeployType" subtask=-1 task=DevLoop
    27	time="2024-10-10T12:32:39-07:00" level=trace msg="validating yamltags of struct KubectlDeploy" subtask=-1 task=DevLoop
    28	time="2024-10-10T12:32:39-07:00" level=trace msg="validating yamltags of struct KubectlFlags" subtask=-1 task=DevLoop
    29	time="2024-10-10T12:32:39-07:00" level=trace msg="validating yamltags of struct DeployHooks" subtask=-1 task=DevLoop
    30	time="2024-10-10T12:32:39-07:00" level=trace msg="validating yamltags of struct LogsConfig" subtask=-1 task=DevLoop
    31	time="2024-10-10T12:32:39-07:00" level=trace msg="validating yamltags of struct JSONParseConfig" subtask=-1 task=DevLoop
    32	time="2024-10-10T12:32:39-07:00" level=trace msg="validating yamltags of struct ResourceSelectorConfig" subtask=-1 task=DevLoop
    33	time="2024-10-10T12:32:39-07:00" level=info msg="Using kubectl context: default" subtask=-1 task=DevLoop
    34	time="2024-10-10T12:32:39-07:00" level=info msg="Using insecure-registries=[reg:5000 reg:5000] from config" subtask=-1 task=DevLoop
    35	time="2024-10-10T12:32:39-07:00" level=debug msg="getting client config for kubeContext: `default`" subtask=-1 task=DevLoop
    36	time="2024-10-10T12:32:39-07:00" level=debug msg="Running command: [minikube version --output=json]" subtask=-1 task=DevLoop
    37	time="2024-10-10T12:32:39-07:00" level=trace msg="Minikube cluster not detected: starting command minikube version --output=json: exec: \"minikube\": executable file not found in $PATH" subtask=-1 task=DevLoop
    38	time="2024-10-10T12:32:39-07:00" level=trace msg="Minikube cluster not detected: starting command minikube version --output=json: exec: \"minikube\": executable file not found in $PATH" subtask=-1 task=DevLoop
    39	time="2024-10-10T12:32:39-07:00" level=debug msg="setting Docker user agent to skaffold-v2.13.2" subtask=-1 task=DevLoop
    40	time="2024-10-10T12:32:39-07:00" level=trace msg="latest skaffold version: v2.13.2" subtask=-1 task=DevLoop
    41	time="2024-10-10T12:32:39-07:00" level=info msg="no kpt renderer or deployer found, skipping hydrated-dir creation" subtask=-1 task=DevLoop
    42	time="2024-10-10T12:32:39-07:00" level=debug msg="Running command: [kubectl config view --minify -o jsonpath='{..namespace}']" subtask=-1 task=DevLoop
    43	time="2024-10-10T12:32:39-07:00" level=debug msg="Command output: ['']" subtask=-1 task=DevLoop
    44	time="2024-10-10T12:32:39-07:00" level=debug msg="CLI platforms provided: \"\"" subtask=-1 task=DevLoop
    45	time="2024-10-10T12:32:39-07:00" level=debug msg="platform detection from active kubernetes cluster is not enabled" subtask=-1 task=DevLoop
    46	time="2024-10-10T12:32:39-07:00" level=debug msg="platforms selected for artifact \"reg:5000/serve_filebeat_metrics\": \"linux/amd64,linux/arm64\"" subtask=-1 task=DevLoop
    47	time="2024-10-10T12:32:39-07:00" level=debug msg="Using builder: local" subtask=-1 task=DevLoop
    48	time="2024-10-10T12:32:39-07:00" level=debug msg="push value not present in NewBuilder, defaulting to true because cluster.PushImages is true" subtask=-1 task=DevLoop
    49	time="2024-10-10T12:32:39-07:00" level=info msg="build concurrency first set to 1 parsed from *runner.pipelineBuilderWithHooks[0]" subtask=-1 task=DevLoop
    50	time="2024-10-10T12:32:39-07:00" level=info msg="final build concurrency value is 1" subtask=-1 task=DevLoop
    51	Generating tags...
    52	- reg:5000/serve_filebeat_metrics -> reg:5000/serve_filebeat_metrics:2024-10-10_12-32-39
    53	time="2024-10-10T12:32:39-07:00" level=info msg="Tags generated in 44.184µs" subtask=-1 task=Build
    54	Checking cache...
    55	time="2024-10-10T12:32:39-07:00" level=trace msg="Checking base image python:3.12-alpine for ONBUILD triggers." subtask=-1 task=DevLoop
    56	time="2024-10-10T12:32:39-07:00" level=debug msg="Found dependencies for dockerfile: [{serve_filebeat_metrics.py /opt false 3 3}]" subtask=-1 task=DevLoop
    57	time="2024-10-10T12:32:39-07:00" level=debug msg="push value not present in isImageLocal(), defaulting to true because cluster.PushImages is true" subtask=-1 task=DevLoop
    58	time="2024-10-10T12:32:39-07:00" level=trace msg="--> GET https://reg:5000/v2/"
    59	time="2024-10-10T12:32:39-07:00" level=trace msg="GET /v2/ HTTP/1.1"
    60	time="2024-10-10T12:32:39-07:00" level=trace msg="Host: reg:5000"
    61	time="2024-10-10T12:32:39-07:00" level=trace msg="User-Agent: Go-http-client/1.1"
    62	time="2024-10-10T12:32:39-07:00" level=trace msg="Accept-Encoding: gzip"
    63	time="2024-10-10T12:32:39-07:00" level=trace
    64	time="2024-10-10T12:32:39-07:00" level=trace
    65	time="2024-10-10T12:32:39-07:00" level=trace msg="<-- tls: first record does not look like a TLS handshake GET https://reg:5000/v2/ (2.400824ms)"
    66	time="2024-10-10T12:32:39-07:00" level=trace msg="--> GET http://reg:5000/v2/"
    67	time="2024-10-10T12:32:39-07:00" level=trace msg="GET /v2/ HTTP/1.1"
    68	time="2024-10-10T12:32:39-07:00" level=trace msg="Host: reg:5000"
    69	time="2024-10-10T12:32:39-07:00" level=trace msg="User-Agent: Go-http-client/1.1"
    70	time="2024-10-10T12:32:39-07:00" level=trace msg="Accept-Encoding: gzip"
    71	time="2024-10-10T12:32:39-07:00" level=trace
    72	time="2024-10-10T12:32:39-07:00" level=trace
    73	time="2024-10-10T12:32:39-07:00" level=trace msg="<-- 200 http://reg:5000/v2/ (4.231433ms)"
    74	time="2024-10-10T12:32:39-07:00" level=trace msg="HTTP/1.1 200 OK"
    75	time="2024-10-10T12:32:39-07:00" level=trace msg="Content-Length: 2"
    76	time="2024-10-10T12:32:39-07:00" level=trace msg="Content-Type: application/json; charset=utf-8"
    77	time="2024-10-10T12:32:39-07:00" level=trace msg="Date: Thu, 10 Oct 2024 19:32:39 GMT"
    78	time="2024-10-10T12:32:39-07:00" level=trace msg="Docker-Distribution-Api-Version: registry/2.0"
    79	time="2024-10-10T12:32:39-07:00" level=trace msg="X-Content-Type-Options: nosniff"
    80	time="2024-10-10T12:32:39-07:00" level=trace
    81	time="2024-10-10T12:32:39-07:00" level=trace msg="{}"
    82	time="2024-10-10T12:32:39-07:00" level=trace msg="--> GET http://reg:5000/v2/serve_filebeat_metrics/manifests/2024-10-10_12-32-39"
    83	time="2024-10-10T12:32:39-07:00" level=trace msg="GET /v2/serve_filebeat_metrics/manifests/2024-10-10_12-32-39 HTTP/1.1"
    84	time="2024-10-10T12:32:39-07:00" level=trace msg="Host: reg:5000"
    85	time="2024-10-10T12:32:39-07:00" level=trace msg="User-Agent: go-containerregistry/v0.19.1"
    86	time="2024-10-10T12:32:39-07:00" level=trace msg="Accept: application/vnd.docker.distribution.manifest.list.v2+json,application/vnd.oci.image.index.v1+json"
    87	time="2024-10-10T12:32:39-07:00" level=trace msg="Accept-Encoding: gzip"
    88	time="2024-10-10T12:32:39-07:00" level=trace
    89	time="2024-10-10T12:32:39-07:00" level=trace
    90	time="2024-10-10T12:32:39-07:00" level=trace msg="<-- 404 http://reg:5000/v2/serve_filebeat_metrics/manifests/2024-10-10_12-32-39 (2.266839ms)"
    91	time="2024-10-10T12:32:39-07:00" level=trace msg="HTTP/1.1 404 Not Found"
    92	time="2024-10-10T12:32:39-07:00" level=trace msg="Content-Length: 109"
    93	time="2024-10-10T12:32:39-07:00" level=trace msg="Content-Type: application/json; charset=utf-8"
    94	time="2024-10-10T12:32:39-07:00" level=trace msg="Date: Thu, 10 Oct 2024 19:32:39 GMT"
    95	time="2024-10-10T12:32:39-07:00" level=trace msg="Docker-Distribution-Api-Version: registry/2.0"
    96	time="2024-10-10T12:32:39-07:00" level=trace msg="X-Content-Type-Options: nosniff"
    97	time="2024-10-10T12:32:39-07:00" level=trace
    98	time="2024-10-10T12:32:39-07:00" level=trace msg="{\"errors\":[{\"code\":\"MANIFEST_UNKNOWN\",\"message\":\"manifest unknown\",\"detail\":{\"Tag\":\"2024-10-10_12-32-39\"}}]}"
    99	time="2024-10-10T12:32:39-07:00" level=trace
   100	time="2024-10-10T12:32:39-07:00" level=trace msg="--> GET https://reg:5000/v2/"
   101	time="2024-10-10T12:32:39-07:00" level=trace msg="GET /v2/ HTTP/1.1"
   102	time="2024-10-10T12:32:39-07:00" level=trace msg="Host: reg:5000"
   103	time="2024-10-10T12:32:39-07:00" level=trace msg="User-Agent: Go-http-client/1.1"
   104	time="2024-10-10T12:32:39-07:00" level=trace msg="Accept-Encoding: gzip"
   105	time="2024-10-10T12:32:39-07:00" level=trace
   106	time="2024-10-10T12:32:39-07:00" level=trace
   107	time="2024-10-10T12:32:39-07:00" level=trace msg="<-- tls: first record does not look like a TLS handshake GET https://reg:5000/v2/ (1.454185ms)"
   108	time="2024-10-10T12:32:39-07:00" level=trace msg="--> GET http://reg:5000/v2/"
   109	time="2024-10-10T12:32:39-07:00" level=trace msg="GET /v2/ HTTP/1.1"
   110	time="2024-10-10T12:32:39-07:00" level=trace msg="Host: reg:5000"
   111	time="2024-10-10T12:32:39-07:00" level=trace msg="User-Agent: Go-http-client/1.1"
   112	time="2024-10-10T12:32:39-07:00" level=trace msg="Accept-Encoding: gzip"
   113	time="2024-10-10T12:32:39-07:00" level=trace
   114	time="2024-10-10T12:32:39-07:00" level=trace
   115	time="2024-10-10T12:32:39-07:00" level=trace msg="<-- 200 http://reg:5000/v2/ (1.912746ms)"
   116	time="2024-10-10T12:32:39-07:00" level=trace msg="HTTP/1.1 200 OK"
   117	time="2024-10-10T12:32:39-07:00" level=trace msg="Content-Length: 2"
   118	time="2024-10-10T12:32:39-07:00" level=trace msg="Content-Type: application/json; charset=utf-8"
   119	time="2024-10-10T12:32:39-07:00" level=trace msg="Date: Thu, 10 Oct 2024 19:32:39 GMT"
   120	time="2024-10-10T12:32:39-07:00" level=trace msg="Docker-Distribution-Api-Version: registry/2.0"
   121	time="2024-10-10T12:32:39-07:00" level=trace msg="X-Content-Type-Options: nosniff"
   122	time="2024-10-10T12:32:39-07:00" level=trace
   123	time="2024-10-10T12:32:39-07:00" level=trace msg="{}"
   124	time="2024-10-10T12:32:39-07:00" level=trace msg="--> GET http://reg:5000/v2/serve_filebeat_metrics/manifests/2024-10-10_12-32-39"
   125	time="2024-10-10T12:32:39-07:00" level=trace msg="GET /v2/serve_filebeat_metrics/manifests/2024-10-10_12-32-39 HTTP/1.1"
   126	time="2024-10-10T12:32:39-07:00" level=trace msg="Host: reg:5000"
   127	time="2024-10-10T12:32:39-07:00" level=trace msg="User-Agent: go-containerregistry/v0.19.1"
   128	time="2024-10-10T12:32:39-07:00" level=trace msg="Accept: application/vnd.docker.distribution.manifest.v1+json,application/vnd.docker.distribution.manifest.v1+prettyjws,application/vnd.docker.distribution.manifest.v2+json,application/vnd.oci.image.manifest.v1+json,application/vnd.docker.distribution.manifest.list.v2+json,application/vnd.oci.image.index.v1+json"
   129	time="2024-10-10T12:32:39-07:00" level=trace msg="Accept-Encoding: gzip"
   130	time="2024-10-10T12:32:39-07:00" level=trace
   131	time="2024-10-10T12:32:39-07:00" level=trace
   132	time="2024-10-10T12:32:39-07:00" level=trace msg="<-- 404 http://reg:5000/v2/serve_filebeat_metrics/manifests/2024-10-10_12-32-39 (2.782539ms)"
   133	time="2024-10-10T12:32:39-07:00" level=trace msg="HTTP/1.1 404 Not Found"
   134	time="2024-10-10T12:32:39-07:00" level=trace msg="Content-Length: 109"
   135	time="2024-10-10T12:32:39-07:00" level=trace msg="Content-Type: application/json; charset=utf-8"
   136	time="2024-10-10T12:32:39-07:00" level=trace msg="Date: Thu, 10 Oct 2024 19:32:39 GMT"
   137	time="2024-10-10T12:32:39-07:00" level=trace msg="Docker-Distribution-Api-Version: registry/2.0"
   138	time="2024-10-10T12:32:39-07:00" level=trace msg="X-Content-Type-Options: nosniff"
   139	time="2024-10-10T12:32:39-07:00" level=trace
   140	time="2024-10-10T12:32:39-07:00" level=trace msg="{\"errors\":[{\"code\":\"MANIFEST_UNKNOWN\",\"message\":\"manifest unknown\",\"detail\":{\"Tag\":\"2024-10-10_12-32-39\"}}]}"
   141	time="2024-10-10T12:32:39-07:00" level=trace
   142	- reg:5000/serve_filebeat_metrics: Not found. Building
   143	time="2024-10-10T12:32:39-07:00" level=info msg="Cache check completed in 24.857399ms" subtask=-1 task=Build
   144	Starting build...
   145	Building [reg:5000/serve_filebeat_metrics]...
   146	Target platforms: [linux/amd64,linux/arm64]
   147	time="2024-10-10T12:32:39-07:00" level=debug msg="Running docker build: context: ., dockerfile: Dockerfile.metrics" subtask="reg:5000/serve_filebeat_metrics" task=Build
   148	time="2024-10-10T12:32:39-07:00" level=debug msg="Skipping credential configuration because docker-credential-gcloud is not on PATH." subtask=-1 task=DevLoop
   149	time="2024-10-10T12:32:39-07:00" level=info msg="Creating tar file from 2 file(s)" subtask="reg:5000/serve_filebeat_metrics" task=Build
   150	time="2024-10-10T12:32:39-07:00" level=info msg="Creating tar file completed in 126.29µs" subtask="reg:5000/serve_filebeat_metrics" task=Build
   151	Sending build context to Docker daemon  4.096kB
   152	STEP 1/3: FROM python:3.12-alpine
   153	WARNING: image platform (linux/arm64/v8) does not match the expected platform (linux/amd64)
   154	STEP 2/3: COPY serve_filebeat_metrics.py /opt
   155	--> Using cache 75ef86c004219d536c75947a7a3a1ff8aa95cafa29713109f925a9d6150d2b2d
   156	--> 75ef86c00421
   157	STEP 3/3: CMD ["python3", "/opt/serve_filebeat_metrics.py"]
   158	--> Using cache 644ded91281f34922cf1f33183298bc432efd51d065cf8a95796e1c731e9f5cb
   159	COMMIT reg:5000/serve_filebeat_metrics:2024-10-10_12-32-39_linux_amd64
   160	--> 644ded91281f
   161	Successfully tagged reg:5000/serve_filebeat_metrics:2024-10-10_12-32-39_linux_amd64
   162	Successfully tagged reg:5000/serve_filebeat_metrics:2024-10-10_12-27-00_linux_amd64
   163	644ded91281f34922cf1f33183298bc432efd51d065cf8a95796e1c731e9f5cb
   164	Successfully built 644ded91281f
   165	Successfully tagged reg:5000/serve_filebeat_metrics:2024-10-10_12-32-39_linux_amd64
   166	time="2024-10-10T12:32:39-07:00" level=debug msg="Skipping credential configuration because docker-credential-gcloud is not on PATH." subtask=-1 task=DevLoop
   167	The push refers to repository [reg:5000/serve_filebeat_metrics:2024-10-10_12-32-39_linux_amd64]
   168	2024-10-10_12-32-39_linux_amd64: digest: sha256:352c5132a84ae795ef5db1786d2ae837ed34295ffb577d294b0955f53fc98f44 size: 1054
   169	time="2024-10-10T12:32:39-07:00" level=trace msg="--> GET https://reg:5000/v2/"
   170	time="2024-10-10T12:32:39-07:00" level=trace msg="GET /v2/ HTTP/1.1"
   171	time="2024-10-10T12:32:39-07:00" level=trace msg="Host: reg:5000"
   172	time="2024-10-10T12:32:39-07:00" level=trace msg="User-Agent: Go-http-client/1.1"
   173	time="2024-10-10T12:32:39-07:00" level=trace msg="Accept-Encoding: gzip"
   174	time="2024-10-10T12:32:39-07:00" level=trace
   175	time="2024-10-10T12:32:39-07:00" level=trace
   176	time="2024-10-10T12:32:39-07:00" level=trace msg="<-- tls: first record does not look like a TLS handshake GET https://reg:5000/v2/ (1.351709ms)"
   177	time="2024-10-10T12:32:39-07:00" level=trace msg="--> GET http://reg:5000/v2/"
   178	time="2024-10-10T12:32:39-07:00" level=trace msg="GET /v2/ HTTP/1.1"
   179	time="2024-10-10T12:32:39-07:00" level=trace msg="Host: reg:5000"
   180	time="2024-10-10T12:32:39-07:00" level=trace msg="User-Agent: Go-http-client/1.1"
   181	time="2024-10-10T12:32:39-07:00" level=trace msg="Accept-Encoding: gzip"
   182	time="2024-10-10T12:32:39-07:00" level=trace
   183	time="2024-10-10T12:32:39-07:00" level=trace
   184	time="2024-10-10T12:32:39-07:00" level=trace msg="<-- 200 http://reg:5000/v2/ (2.271938ms)"
   185	time="2024-10-10T12:32:39-07:00" level=trace msg="HTTP/1.1 200 OK"
   186	time="2024-10-10T12:32:39-07:00" level=trace msg="Content-Length: 2"
   187	time="2024-10-10T12:32:39-07:00" level=trace msg="Content-Type: application/json; charset=utf-8"
   188	time="2024-10-10T12:32:39-07:00" level=trace msg="Date: Thu, 10 Oct 2024 19:32:39 GMT"
   189	time="2024-10-10T12:32:39-07:00" level=trace msg="Docker-Distribution-Api-Version: registry/2.0"
   190	time="2024-10-10T12:32:39-07:00" level=trace msg="X-Content-Type-Options: nosniff"
   191	time="2024-10-10T12:32:39-07:00" level=trace
   192	time="2024-10-10T12:32:39-07:00" level=trace msg="{}"
   193	time="2024-10-10T12:32:39-07:00" level=trace msg="--> GET http://reg:5000/v2/serve_filebeat_metrics/manifests/2024-10-10_12-32-39_linux_amd64"
   194	time="2024-10-10T12:32:39-07:00" level=trace msg="GET /v2/serve_filebeat_metrics/manifests/2024-10-10_12-32-39_linux_amd64 HTTP/1.1"
   195	time="2024-10-10T12:32:39-07:00" level=trace msg="Host: reg:5000"
   196	time="2024-10-10T12:32:39-07:00" level=trace msg="User-Agent: go-containerregistry/v0.19.1"
   197	time="2024-10-10T12:32:39-07:00" level=trace msg="Accept: application/vnd.docker.distribution.manifest.list.v2+json,application/vnd.oci.image.index.v1+json"
   198	time="2024-10-10T12:32:39-07:00" level=trace msg="Accept-Encoding: gzip"
   199	time="2024-10-10T12:32:39-07:00" level=trace
   200	time="2024-10-10T12:32:39-07:00" level=trace
   201	time="2024-10-10T12:32:39-07:00" level=trace msg="<-- 200 http://reg:5000/v2/serve_filebeat_metrics/manifests/2024-10-10_12-32-39_linux_amd64 (6.868084ms)"
   202	time="2024-10-10T12:32:39-07:00" level=trace msg="HTTP/1.1 200 OK"
   203	time="2024-10-10T12:32:39-07:00" level=trace msg="Content-Length: 10991"
   204	time="2024-10-10T12:32:39-07:00" level=trace msg="Content-Type: application/vnd.docker.distribution.manifest.v1+prettyjws"
   205	time="2024-10-10T12:32:39-07:00" level=trace msg="Date: Thu, 10 Oct 2024 19:32:39 GMT"
   206	time="2024-10-10T12:32:39-07:00" level=trace msg="Docker-Content-Digest: sha256:bd6208d0ea8440bce4a2f52dc4047372c38cc8cfbaad25eb451c11e056399ca6"
   207	time="2024-10-10T12:32:39-07:00" level=trace msg="Docker-Distribution-Api-Version: registry/2.0"
   208	time="2024-10-10T12:32:39-07:00" level=trace msg="Etag: \"sha256:bd6208d0ea8440bce4a2f52dc4047372c38cc8cfbaad25eb451c11e056399ca6\""
   209	time="2024-10-10T12:32:39-07:00" level=trace msg="X-Content-Type-Options: nosniff"
   210	time="2024-10-10T12:32:39-07:00" level=trace
   211	time="2024-10-10T12:32:39-07:00" level=trace msg="{"
   212	time="2024-10-10T12:32:39-07:00" level=trace msg="   \"schemaVersion\": 1,"
   213	time="2024-10-10T12:32:39-07:00" level=trace msg="   \"name\": \"serve_filebeat_metrics\","
   214	time="2024-10-10T12:32:39-07:00" level=trace msg="   \"tag\": \"2024-10-10_12-32-39_linux_amd64\","
   215	time="2024-10-10T12:32:39-07:00" level=trace msg="   \"architecture\": \"arm64\","
   216	time="2024-10-10T12:32:39-07:00" level=trace msg="   \"fsLayers\": ["
   217	time="2024-10-10T12:32:39-07:00" level=trace msg="      {"
   218	time="2024-10-10T12:32:39-07:00" level=trace msg="         \"blobSum\": \"sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4\""
   219	time="2024-10-10T12:32:39-07:00" level=trace msg="      },"
   220	time="2024-10-10T12:32:39-07:00" level=trace msg="      {"
   221	time="2024-10-10T12:32:39-07:00" level=trace msg="         \"blobSum\": \"sha256:c67537833de462e459a75fe1a90c9fb3c156ee351c93c134a886191703972d32\""
   222	time="2024-10-10T12:32:39-07:00" level=trace msg="      },"
   223	time="2024-10-10T12:32:39-07:00" level=trace msg="      {"
   224	time="2024-10-10T12:32:39-07:00" level=trace msg="         \"blobSum\": \"sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4\""
   225	time="2024-10-10T12:32:39-07:00" level=trace msg="      },"
   226	time="2024-10-10T12:32:39-07:00" level=trace msg="      {"
   227	time="2024-10-10T12:32:39-07:00" level=trace msg="         \"blobSum\": \"sha256:0115b548271a8ee5577da317e9a7bb0f8ac514fbdd3498d56e0d377123f269bc\""
   228	time="2024-10-10T12:32:39-07:00" level=trace msg="      },"
   229	time="2024-10-10T12:32:39-07:00" level=trace msg="      {"
   230	time="2024-10-10T12:32:39-07:00" level=trace msg="         \"blobSum\": \"sha256:5530bd950b7c24292edf13862fd1857553bc59f3db8439d66a5dfefa589744e9\""
   231	time="2024-10-10T12:32:39-07:00" level=trace msg="      },"
   232	time="2024-10-10T12:32:39-07:00" level=trace msg="      {"
   233	time="2024-10-10T12:32:39-07:00" level=trace msg="         \"blobSum\": \"sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4\""
   234	time="2024-10-10T12:32:39-07:00" level=trace msg="      },"
   235	time="2024-10-10T12:32:39-07:00" level=trace msg="      {"
   236	time="2024-10-10T12:32:39-07:00" level=trace msg="         \"blobSum\": \"sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4\""
   237	time="2024-10-10T12:32:39-07:00" level=trace msg="      },"
   238	time="2024-10-10T12:32:39-07:00" level=trace msg="      {"
   239	time="2024-10-10T12:32:39-07:00" level=trace msg="         \"blobSum\": \"sha256:30064b9e1ac31f2c3e4b09abfd7003fbe42490ceb9a74a55ab1ff97d78796b0f\""
   240	time="2024-10-10T12:32:39-07:00" level=trace msg="      },"
   241	time="2024-10-10T12:32:39-07:00" level=trace msg="      {"
   242	time="2024-10-10T12:32:39-07:00" level=trace msg="         \"blobSum\": \"sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4\""
   243	time="2024-10-10T12:32:39-07:00" level=trace msg="      },"
   244	time="2024-10-10T12:32:39-07:00" level=trace msg="      {"
   245	time="2024-10-10T12:32:39-07:00" level=trace msg="         \"blobSum\": \"sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4\""
   246	time="2024-10-10T12:32:39-07:00" level=trace msg="      },"
   247	time="2024-10-10T12:32:39-07:00" level=trace msg="      {"
   248	time="2024-10-10T12:32:39-07:00" level=trace msg="         \"blobSum\": \"sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4\""
   249	time="2024-10-10T12:32:39-07:00" level=trace msg="      },"
   250	time="2024-10-10T12:32:39-07:00" level=trace msg="      {"
   251	time="2024-10-10T12:32:39-07:00" level=trace msg="         \"blobSum\": \"sha256:aed6481c86ad17b8b57c77b5b7aa87325bc8f7c8c7c49bf3ac332507a611255f\""
   252	time="2024-10-10T12:32:39-07:00" level=trace msg="      }"
   253	time="2024-10-10T12:32:39-07:00" level=trace msg="   ],"
   254	time="2024-10-10T12:32:39-07:00" level=trace msg="   \"history\": ["
   255	time="2024-10-10T12:32:39-07:00" level=trace msg="      {"
   256	time="2024-10-10T12:32:39-07:00" level=trace msg="         \"v1Compatibility\": \"{\\\"architecture\\\":\\\"arm64\\\",\\\"config\\\":{\\\"Hostname\\\":\\\"e047e10a9d41\\\",\\\"Domainname\\\":\\\"\\\",\\\"User\\\":\\\"\\\",\\\"AttachStdin\\\":false,\\\"AttachStdout\\\":false,\\\"AttachStderr\\\":false,\\\"Tty\\\":false,\\\"OpenStdin\\\":false,\\\"StdinOnce\\\":false,\\\"Env\\\":[\\\"PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin\\\",\\\"LANG=C.UTF-8\\\",\\\"GPG_KEY=\\\",\\\"PYTHON_VERSION=3.12.7\\\"],\\\"Cmd\\\":[\\\"python3\\\",\\\"/opt/serve_filebeat_metrics.py\\\"],\\\"ArgsEscaped\\\":true,\\\"Image\\\":\\\"\\\",\\\"Volumes\\\":{},\\\"WorkingDir\\\":\\\"\\\",\\\"Entrypoint\\\":[],\\\"OnBuild\\\":[],\\\"Labels\\\":{\\\"io.buildah.version\\\":\\\"1.33.7\\\"}},\\\"container\\\":\\\"73e05a479e8327a20bcbc4e6e0cd23c4366bdba7f64656c2e58beeb850e7148b\\\",\\\"container_config\\\":{\\\"Hostname\\\":\\\"e047e10a9d41\\\",\\\"Domainname\\\":\\\"\\\",\\\"User\\\":\\\"\\\",\\\"AttachStdin\\\":false,\\\"AttachStdout\\\":false,\\\"AttachStderr\\\":false,\\\"Tty\\\":false,\\\"OpenStdin\\\":false,\\\"StdinOnce\\\":false,\\\"Env\\\":[\\\"PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin\\\",\\\"LANG=C.UTF-8\\\",\\\"GPG_KEY=\\\",\\\"PYTHON_VERSION=3.12.7\\\"],\\\"Cmd\\\":[\\\"python3\\\",\\\"/opt/serve_filebeat_metrics.py\\\"],\\\"ArgsEscaped\\\":true,\\\"Image\\\":\\\"\\\",\\\"Volumes\\\":{},\\\"WorkingDir\\\":\\\"\\\",\\\"Entrypoint\\\":[],\\\"OnBuild\\\":[],\\\"Labels\\\":{\\\"io.buildah.version\\\":\\\"1.33.7\\\"}},\\\"created\\\":\\\"2024-10-10T19:27:00.935745812Z\\\",\\\"id\\\":\\\"67422cff6226655ef947c0d7ff6d861bb69cff3b57878a51ebacc9506fb82409\\\",\\\"os\\\":\\\"linux\\\",\\\"parent\\\":\\\"1e25640b2106f21b2444f43c63aa889f67ffb6a8a61673f89d7ae0f52a1995b5\\\",\\\"throwaway\\\":true,\\\"variant\\\":\\\"v8\\\"}\""
   257	time="2024-10-10T12:32:39-07:00" level=trace msg="      },"
   258	time="2024-10-10T12:32:39-07:00" level=trace msg="      {"
   259	time="2024-10-10T12:32:39-07:00" level=trace msg="         \"v1Compatibility\": \"{\\\"id\\\":\\\"1e25640b2106f21b2444f43c63aa889f67ffb6a8a61673f89d7ae0f52a1995b5\\\",\\\"parent\\\":\\\"bd4d7902a89a59aa444fd5265b0f19ae7a75bfeeceb4ec016bcd4c0a4f4ed40e\\\",\\\"comment\\\":\\\"FROM docker.io/library/python:3.12-alpine\\\",\\\"created\\\":\\\"2024-10-10T19:16:46.938348975Z\\\",\\\"container_config\\\":{\\\"Cmd\\\":[\\\"/bin/sh -c #(nop) COPY file:26e0bfc68fcec472290d840a3a59984d00b4acd3f4abed1562cb607bf64caebf in /opt \\\"]}}\""
   260	time="2024-10-10T12:32:39-07:00" level=trace msg="      },"
   261	time="2024-10-10T12:32:39-07:00" level=trace msg="      {"
   262	time="2024-10-10T12:32:39-07:00" level=trace msg="         \"v1Compatibility\": \"{\\\"id\\\":\\\"bd4d7902a89a59aa444fd5265b0f19ae7a75bfeeceb4ec016bcd4c0a4f4ed40e\\\",\\\"parent\\\":\\\"f3195e960c1fa721d694d89c580023ed6094a641b90343cbcc5637b168957b94\\\",\\\"comment\\\":\\\"buildkit.dockerfile.v0\\\",\\\"created\\\":\\\"2024-10-01T10:04:25Z\\\",\\\"container_config\\\":{\\\"Cmd\\\":[\\\"CMD [\\\\\\\"python3\\\\\\\"]\\\"]},\\\"throwaway\\\":true}\""
   263	time="2024-10-10T12:32:39-07:00" level=trace msg="      },"
   264	time="2024-10-10T12:32:39-07:00" level=trace msg="      {"
   265	time="2024-10-10T12:32:39-07:00" level=trace msg="         \"v1Compatibility\": \"{\\\"id\\\":\\\"f3195e960c1fa721d694d89c580023ed6094a641b90343cbcc5637b168957b94\\\",\\\"parent\\\":\\\"96fabb89d52096e3c56a48538b3118cdd2116f920062879ffe932aa730976f8b\\\",\\\"comment\\\":\\\"buildkit.dockerfile.v0\\\",\\\"created\\\":\\\"2024-10-01T10:04:25Z\\\",\\\"container_config\\\":{\\\"Cmd\\\":[\\\"RUN /bin/sh -c set -eux; \\\\tfor src in idle3 pip3 pydoc3 python3 python3-config; do \\\\t\\\\tdst=\\\\\\\"$(echo \\\\\\\"$src\\\\\\\" | tr -d 3)\\\\\\\"; \\\\t\\\\t[ -s \\\\\\\"/usr/local/bin/$src\\\\\\\" ]; \\\\t\\\\t[ ! -e \\\\\\\"/usr/local/bin/$dst\\\\\\\" ]; \\\\t\\\\tln -svT \\\\\\\"$src\\\\\\\" \\\\\\\"/usr/local/bin/$dst\\\\\\\"; \\\\tdone # buildkit\\\"]}}\""
   266	time="2024-10-10T12:32:39-07:00" level=trace msg="      },"
   267	time="2024-10-10T12:32:39-07:00" level=trace msg="      {"
   268	time="2024-10-10T12:32:39-07:00" level=trace msg="         \"v1Compatibility\": \"{\\\"id\\\":\\\"96fabb89d52096e3c56a48538b3118cdd2116f920062879ffe932aa730976f8b\\\",\\\"parent\\\":\\\"a9cbadefa109de63f83f07a9f16960998b9f9e9aeacfff96730115347bfebcc6\\\",\\\"comment\\\":\\\"buildkit.dockerfile.v0\\\",\\\"created\\\":\\\"2024-10-01T10:04:25Z\\\",\\\"container_config\\\":{\\\"Cmd\\\":[\\\"RUN /bin/sh -c set -eux; \\\\t\\\\tapk add --no-cache --virtual .build-deps \\\\t\\\\tgnupg \\\\t\\\\ttar \\\\t\\\\txz \\\\t\\\\t\\\\t\\\\tbluez-dev \\\\t\\\\tbzip2-dev \\\\t\\\\tdpkg-dev dpkg \\\\t\\\\texpat-dev \\\\t\\\\tfindutils \\\\t\\\\tgcc \\\\t\\\\tgdbm-dev \\\\t\\\\tlibc-dev \\\\t\\\\tlibffi-dev \\\\t\\\\tlibnsl-dev \\\\t\\\\tlibtirpc-dev \\\\t\\\\tlinux-headers \\\\t\\\\tmake \\\\t\\\\tncurses-dev \\\\t\\\\topenssl-dev \\\\t\\\\tpax-utils \\\\t\\\\treadline-dev \\\\t\\\\tsqlite-dev \\\\t\\\\ttcl-dev \\\\t\\\\ttk \\\\t\\\\ttk-dev \\\\t\\\\tutil-linux-dev \\\\t\\\\txz-dev \\\\t\\\\tzlib-dev \\\\t; \\\\t\\\\twget -O python.tar.xz \\\\\\\"https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz\\\\\\\"; \\\\twget -O python.tar.xz.asc \\\\\\\"https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc\\\\\\\"; \\\\tGNUPGHOME=\\\\\\\"$(mktemp -d)\\\\\\\"; export GNUPGHOME; \\\\tgpg --batch --keyserver hkps://keys.openpgp.org --recv-keys \\\\\\\"$GPG_KEY\\\\\\\"; \\\\tgpg --batch --verify python.tar.xz.asc python.tar.xz; \\\\tgpgconf --kill all; \\\\trm -rf \\\\\\\"$GNUPGHOME\\\\\\\" python.tar.xz.asc; \\\\tmkdir -p /usr/src/python; \\\\ttar --extract --directory /usr/src/python --strip-components=1 --file python.tar.xz; \\\\trm python.tar.xz; \\\\t\\\\tcd /usr/src/python; \\\\tgnuArch=\\\\\\\"$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)\\\\\\\"; \\\\t./configure \\\\t\\\\t--build=\\\\\\\"$gnuArch\\\\\\\" \\\\t\\\\t--enable-loadable-sqlite-extensions \\\\t\\\\t$(test \\\\\\\"$gnuArch\\\\\\\" != 'riscv64-linux-musl' \\\\u0026\\\\u0026 echo '--enable-optimizations') \\\\t\\\\t--enable-option-checking=fatal \\\\t\\\\t--enable-shared \\\\t\\\\t--with-lto \\\\t\\\\t--with-system-expat \\\\t\\\\t--with-ensurepip \\\\t; \\\\tnproc=\\\\\\\"$(nproc)\\\\\\\"; \\\\tEXTRA_CFLAGS=\\\\\\\"-DTHREAD_STACK_SIZE=0x100000\\\\\\\"; \\\\tLDFLAGS=\\\\\\\"${LDFLAGS:--Wl},--strip-all\\\\\\\"; \\\\tmake -j \\\\\\\"$nproc\\\\\\\" \\\\t\\\\t\\\\\\\"EXTRA_CFLAGS=${EXTRA_CFLAGS:-}\\\\\\\" \\\\t\\\\t\\\\\\\"LDFLAGS=${LDFLAGS:-}\\\\\\\" \\\\t\\\\t\\\\\\\"PROFILE_TASK=${PROFILE_TASK:-}\\\\\\\" \\\\t; \\\\trm python; \\\\tmake -j \\\\\\\"$nproc\\\\\\\" \\\\t\\\\t\\\\\\\"EXTRA_CFLAGS=${EXTRA_CFLAGS:-}\\\\\\\" \\\\t\\\\t\\\\\\\"LDFLAGS=${LDFLAGS:--Wl},-rpath='\\\\\\\\$\\\\\\\\$ORIGIN/../lib'\\\\\\\" \\\\t\\\\t\\\\\\\"PROFILE_TASK=${PROFILE_TASK:-}\\\\\\\" \\\\t\\\\tpython \\\\t; \\\\tmake install; \\\\t\\\\tcd /; \\\\trm -rf /usr/src/python; \\\\t\\\\tfind /usr/local -depth \\\\t\\\\t\\\\\\\\( \\\\t\\\\t\\\\t\\\\\\\\( -type d -a \\\\\\\\( -name test -o -name tests -o -name idle_test \\\\\\\\) \\\\\\\\) \\\\t\\\\t\\\\t-o \\\\\\\\( -type f -a \\\\\\\\( -name '*.pyc' -o -name '*.pyo' -o -name 'libpython*.a' \\\\\\\\) \\\\\\\\) \\\\t\\\\t\\\\\\\\) -exec rm -rf '{}' + \\\\t; \\\\t\\\\tfind /usr/local -type f -executable -not \\\\\\\\( -name '*tkinter*' \\\\\\\\) -exec scanelf --needed --nobanner --format '%n#p' '{}' ';' \\\\t\\\\t| tr ',' '\\\\\\\\n' \\\\t\\\\t| sort -u \\\\t\\\\t| awk 'system(\\\\\\\"[ -e /usr/local/lib/\\\\\\\" $1 \\\\\\\" ]\\\\\\\") == 0 { next } { print \\\\\\\"so:\\\\\\\" $1 }' \\\\t\\\\t| xargs -rt apk add --no-network --virtual .python-rundeps \\\\t; \\\\tapk del --no-network .build-deps; \\\\t\\\\texport PYTHONDONTWRITEBYTECODE=1; \\\\tpython3 --version; \\\\tpip3 --version # buildkit\\\"]}}\""
   269	time="2024-10-10T12:32:39-07:00" level=trace msg="      },"
   270	time="2024-10-10T12:32:39-07:00" level=trace msg="      {"
   271	time="2024-10-10T12:32:39-07:00" level=trace msg="         \"v1Compatibility\": \"{\\\"id\\\":\\\"a9cbadefa109de63f83f07a9f16960998b9f9e9aeacfff96730115347bfebcc6\\\",\\\"parent\\\":\\\"2f98be607d65c36917de44a861a1efd159a09d2d3b2c62453973985585893c85\\\",\\\"comment\\\":\\\"buildkit.dockerfile.v0\\\",\\\"created\\\":\\\"2024-10-01T10:04:25Z\\\",\\\"container_config\\\":{\\\"Cmd\\\":[\\\"ENV PYTHON_VERSION=3.12.7\\\"]},\\\"throwaway\\\":true}\""
   272	time="2024-10-10T12:32:39-07:00" level=trace msg="      },"
   273	time="2024-10-10T12:32:39-07:00" level=trace msg="      {"
   274	time="2024-10-10T12:32:39-07:00" level=trace msg="         \"v1Compatibility\": \"{\\\"id\\\":\\\"2f98be607d65c36917de44a861a1efd159a09d2d3b2c62453973985585893c85\\\",\\\"parent\\\":\\\"5b40c240896f007d896337602c5deb80e0ed5a6df68ba738e9c21ebbaf6031d6\\\",\\\"comment\\\":\\\"buildkit.dockerfile.v0\\\",\\\"created\\\":\\\"2024-10-01T10:04:25Z\\\",\\\"container_config\\\":{\\\"Cmd\\\":[\\\"ENV GPG_KEY=7169605F62C751356D054A26A821E680E5FA6305\\\"]},\\\"throwaway\\\":true}\""
   275	time="2024-10-10T12:32:39-07:00" level=trace msg="      },"
   276	time="2024-10-10T12:32:39-07:00" level=trace msg="      {"
   277	time="2024-10-10T12:32:39-07:00" level=trace msg="         \"v1Compatibility\": \"{\\\"id\\\":\\\"5b40c240896f007d896337602c5deb80e0ed5a6df68ba738e9c21ebbaf6031d6\\\",\\\"parent\\\":\\\"86e6ce109f201434f6b7d48b6a54dc333813d34ea70b59840438cfaa0a77d8e3\\\",\\\"comment\\\":\\\"buildkit.dockerfile.v0\\\",\\\"created\\\":\\\"2024-10-01T10:04:25Z\\\",\\\"container_config\\\":{\\\"Cmd\\\":[\\\"RUN /bin/sh -c set -eux; \\\\tapk add --no-cache \\\\t\\\\tca-certificates \\\\t\\\\ttzdata \\\\t; # buildkit\\\"]}}\""
   278	time="2024-10-10T12:32:39-07:00" level=trace msg="      },"
   279	time="2024-10-10T12:32:39-07:00" level=trace msg="      {"
   280	time="2024-10-10T12:32:39-07:00" level=trace msg="         \"v1Compatibility\": \"{\\\"id\\\":\\\"86e6ce109f201434f6b7d48b6a54dc333813d34ea70b59840438cfaa0a77d8e3\\\",\\\"parent\\\":\\\"49ab1618fe2390066a5d78182d5d97d5b4e74f098758766e53c704227a0c5ae0\\\",\\\"comment\\\":\\\"buildkit.dockerfile.v0\\\",\\\"created\\\":\\\"2024-10-01T10:04:25Z\\\",\\\"container_config\\\":{\\\"Cmd\\\":[\\\"ENV LANG=C.UTF-8\\\"]},\\\"throwaway\\\":true}\""
   281	time="2024-10-10T12:32:39-07:00" level=trace msg="      },"
   282	time="2024-10-10T12:32:39-07:00" level=trace msg="      {"
   283	time="2024-10-10T12:32:39-07:00" level=trace msg="         \"v1Compatibility\": \"{\\\"id\\\":\\\"49ab1618fe2390066a5d78182d5d97d5b4e74f098758766e53c704227a0c5ae0\\\",\\\"parent\\\":\\\"c12b405809ac65943e58e203af0f91fb45fa13bf2e049a9c0f91f223955d7cfc\\\",\\\"comment\\\":\\\"buildkit.dockerfile.v0\\\",\\\"created\\\":\\\"2024-10-01T10:04:25Z\\\",\\\"container_config\\\":{\\\"Cmd\\\":[\\\"ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin\\\"]},\\\"throwaway\\\":true}\""
   284	time="2024-10-10T12:32:39-07:00" level=trace msg="      },"
   285	time="2024-10-10T12:32:39-07:00" level=trace msg="      {"
   286	time="2024-10-10T12:32:39-07:00" level=trace msg="         \"v1Compatibility\": \"{\\\"id\\\":\\\"c12b405809ac65943e58e203af0f91fb45fa13bf2e049a9c0f91f223955d7cfc\\\",\\\"parent\\\":\\\"d8b610a5af77974552b5313029fafe51b59cdbc97e3efaaa5db8a10728860f0b\\\",\\\"created\\\":\\\"2024-09-06T22:44:11.008804648Z\\\",\\\"container_config\\\":{\\\"Cmd\\\":[\\\"/bin/sh -c #(nop)  CMD [\\\\\\\"/bin/sh\\\\\\\"]\\\"]},\\\"throwaway\\\":true}\""
   287	time="2024-10-10T12:32:39-07:00" level=trace msg="      },"
   288	time="2024-10-10T12:32:39-07:00" level=trace msg="      {"
   289	time="2024-10-10T12:32:39-07:00" level=trace msg="         \"v1Compatibility\": \"{\\\"id\\\":\\\"d8b610a5af77974552b5313029fafe51b59cdbc97e3efaaa5db8a10728860f0b\\\",\\\"created\\\":\\\"2024-09-06T22:44:10.797925871Z\\\",\\\"container_config\\\":{\\\"Cmd\\\":[\\\"/bin/sh -c #(nop) ADD file:ee5bb8409915b11413f44cce4c22fed658aba4fb078a448e08dd4ac9a23581f2 in / \\\"]}}\""
   290	time="2024-10-10T12:32:39-07:00" level=trace msg="      }"
   291	time="2024-10-10T12:32:39-07:00" level=trace msg="   ],"
   292	time="2024-10-10T12:32:39-07:00" level=trace msg="   \"signatures\": ["
   293	time="2024-10-10T12:32:39-07:00" level=trace msg="      {"
   294	time="2024-10-10T12:32:39-07:00" level=trace msg="         \"header\": {"
   295	time="2024-10-10T12:32:39-07:00" level=trace msg="            \"jwk\": {"
   306	time="2024-10-10T12:32:39-07:00" level=trace msg="      }"
   307	time="2024-10-10T12:32:39-07:00" level=trace msg="   ]"
   308	time="2024-10-10T12:32:39-07:00" level=trace msg="}"
   309	time="2024-10-10T12:32:39-07:00" level=trace msg="--> GET https://reg:5000/v2/"
   310	time="2024-10-10T12:32:39-07:00" level=trace msg="GET /v2/ HTTP/1.1"
   311	time="2024-10-10T12:32:39-07:00" level=trace msg="Host: reg:5000"
   312	time="2024-10-10T12:32:39-07:00" level=trace msg="User-Agent: Go-http-client/1.1"
   313	time="2024-10-10T12:32:39-07:00" level=trace msg="Accept-Encoding: gzip"
   314	time="2024-10-10T12:32:39-07:00" level=trace
   315	time="2024-10-10T12:32:39-07:00" level=trace
   316	time="2024-10-10T12:32:39-07:00" level=trace msg="<-- tls: first record does not look like a TLS handshake GET https://reg:5000/v2/ (1.742953ms)"
   317	time="2024-10-10T12:32:39-07:00" level=trace msg="--> GET http://reg:5000/v2/"
   318	time="2024-10-10T12:32:39-07:00" level=trace msg="GET /v2/ HTTP/1.1"
   319	time="2024-10-10T12:32:39-07:00" level=trace msg="Host: reg:5000"
   320	time="2024-10-10T12:32:39-07:00" level=trace msg="User-Agent: Go-http-client/1.1"
   321	time="2024-10-10T12:32:39-07:00" level=trace msg="Accept-Encoding: gzip"
   322	time="2024-10-10T12:32:39-07:00" level=trace
   323	time="2024-10-10T12:32:39-07:00" level=trace
   324	time="2024-10-10T12:32:39-07:00" level=trace msg="<-- 200 http://reg:5000/v2/ (2.18857ms)"
   325	time="2024-10-10T12:32:39-07:00" level=trace msg="HTTP/1.1 200 OK"
   326	time="2024-10-10T12:32:39-07:00" level=trace msg="Content-Length: 2"
   327	time="2024-10-10T12:32:39-07:00" level=trace msg="Content-Type: application/json; charset=utf-8"
   328	time="2024-10-10T12:32:39-07:00" level=trace msg="Date: Thu, 10 Oct 2024 19:32:39 GMT"
   329	time="2024-10-10T12:32:39-07:00" level=trace msg="Docker-Distribution-Api-Version: registry/2.0"
   330	time="2024-10-10T12:32:39-07:00" level=trace msg="X-Content-Type-Options: nosniff"
   331	time="2024-10-10T12:32:39-07:00" level=trace
   332	time="2024-10-10T12:32:39-07:00" level=trace msg="{}"
   333	time="2024-10-10T12:32:39-07:00" level=trace msg="--> GET http://reg:5000/v2/serve_filebeat_metrics/manifests/2024-10-10_12-32-39_linux_amd64"
   334	time="2024-10-10T12:32:39-07:00" level=trace msg="GET /v2/serve_filebeat_metrics/manifests/2024-10-10_12-32-39_linux_amd64 HTTP/1.1"
   335	time="2024-10-10T12:32:39-07:00" level=trace msg="Host: reg:5000"
   336	time="2024-10-10T12:32:39-07:00" level=trace msg="User-Agent: go-containerregistry/v0.19.1"
   337	time="2024-10-10T12:32:39-07:00" level=trace msg="Accept: application/vnd.docker.distribution.manifest.v1+json,application/vnd.docker.distribution.manifest.v1+prettyjws,application/vnd.docker.distribution.manifest.v2+json,application/vnd.oci.image.manifest.v1+json,application/vnd.docker.distribution.manifest.list.v2+json,application/vnd.oci.image.index.v1+json"
   338	time="2024-10-10T12:32:39-07:00" level=trace msg="Accept-Encoding: gzip"
   339	time="2024-10-10T12:32:39-07:00" level=trace
   340	time="2024-10-10T12:32:39-07:00" level=trace
   341	time="2024-10-10T12:32:39-07:00" level=trace msg="<-- 200 http://reg:5000/v2/serve_filebeat_metrics/manifests/2024-10-10_12-32-39_linux_amd64 (3.736603ms)"
   342	time="2024-10-10T12:32:39-07:00" level=trace msg="HTTP/1.1 200 OK"
   343	time="2024-10-10T12:32:39-07:00" level=trace msg="Content-Length: 1076"
   344	time="2024-10-10T12:32:39-07:00" level=trace msg="Content-Type: application/vnd.docker.distribution.manifest.v2+json"
   345	time="2024-10-10T12:32:39-07:00" level=trace msg="Date: Thu, 10 Oct 2024 19:32:39 GMT"
   346	time="2024-10-10T12:32:39-07:00" level=trace msg="Docker-Content-Digest: sha256:352c5132a84ae795ef5db1786d2ae837ed34295ffb577d294b0955f53fc98f44"
   347	time="2024-10-10T12:32:39-07:00" level=trace msg="Docker-Distribution-Api-Version: registry/2.0"
   348	time="2024-10-10T12:32:39-07:00" level=trace msg="Etag: \"sha256:352c5132a84ae795ef5db1786d2ae837ed34295ffb577d294b0955f53fc98f44\""
   349	time="2024-10-10T12:32:39-07:00" level=trace msg="X-Content-Type-Options: nosniff"
   350	time="2024-10-10T12:32:39-07:00" level=trace
   351	time="2024-10-10T12:32:39-07:00" level=trace msg="{\"schemaVersion\":2,\"mediaType\":\"application/vnd.docker.distribution.manifest.v2+json\",\"config\":{\"mediaType\":\"application/vnd.docker.container.image.v1+json\",\"size\":6361,\"digest\":\"sha256:644ded91281f34922cf1f33183298bc432efd51d065cf8a95796e1c731e9f5cb\"},\"layers\":[{\"mediaType\":\"application/vnd.docker.image.rootfs.diff.tar.gzip\",\"size\":4173378,\"digest\":\"sha256:aed6481c86ad17b8b57c77b5b7aa87325bc8f7c8c7c49bf3ac332507a611255f\"},{\"mediaType\":\"application/vnd.docker.image.rootfs.diff.tar.gzip\",\"size\":463943,\"digest\":\"sha256:30064b9e1ac31f2c3e4b09abfd7003fbe42490ceb9a74a55ab1ff97d78796b0f\"},{\"mediaType\":\"application/vnd.docker.image.rootfs.diff.tar.gzip\",\"size\":13681517,\"digest\":\"sha256:5530bd950b7c24292edf13862fd1857553bc59f3db8439d66a5dfefa589744e9\"},{\"mediaType\":\"application/vnd.docker.image.rootfs.diff.tar.gzip\",\"size\":268,\"digest\":\"sha256:0115b548271a8ee5577da317e9a7bb0f8ac514fbdd3498d56e0d377123f269bc\"},{\"mediaType\":\"application/vnd.docker.image.rootfs.diff.tar.gzip\",\"size\":755,\"digest\":\"sha256:c67537833de462e459a75fe1a90c9fb3c156ee351c93c134a886191703972d32\"}]}"
   352	time="2024-10-10T12:32:39-07:00" level=debug msg="setting DOCKER_BUILDKIT=1 for docker build for artifact \"reg:5000/serve_filebeat_metrics\" since it targets platform \"linux/arm64\"" subtask="reg:5000/serve_filebeat_metrics" task=Build
   353	time="2024-10-10T12:32:39-07:00" level=debug msg="Running command: [docker build . --file /my/serv/victorialogs/node-logging-agent/Dockerfile.metrics -t reg:5000/serve_filebeat_metrics:2024-10-10_12-32-39_linux_arm64 --platform linux/arm64]" subtask="reg:5000/serve_filebeat_metrics" task=Build
   354	Emulate Docker CLI using podman. Create /etc/containers/nodocker to quiet msg.
   355	STEP 1/3: FROM python:3.12-alpine
   356	STEP 2/3: COPY serve_filebeat_metrics.py /opt
   357	--> Using cache d836ba432d9948c6c7238380c8db31deda85e4d881f5fc8d760144a3e801ef22
   358	--> d836ba432d99
   359	STEP 3/3: CMD ["python3", "/opt/serve_filebeat_metrics.py"]
   360	--> Using cache 4328ecb5a8b4abbffa2fcc2b0c6f02009e02ec7736d688dffd5e91cb1a15af54
   361	COMMIT reg:5000/serve_filebeat_metrics:2024-10-10_12-32-39_linux_arm64
   362	--> 4328ecb5a8b4
   363	Successfully tagged reg:5000/serve_filebeat_metrics:2024-10-10_12-32-39_linux_arm64
   364	Successfully tagged reg:5000/serve_filebeat_metrics:2024-10-10_12-27-00_linux_arm64
   365	4328ecb5a8b4abbffa2fcc2b0c6f02009e02ec7736d688dffd5e91cb1a15af54
   366	time="2024-10-10T12:32:40-07:00" level=debug msg="Skipping credential configuration because docker-credential-gcloud is not on PATH." subtask=-1 task=DevLoop
   367	The push refers to repository [reg:5000/serve_filebeat_metrics:2024-10-10_12-32-39_linux_arm64]
   368	2024-10-10_12-32-39_linux_arm64: digest: sha256:7b33be2f342f1b8a6c1810a178642d758e1cb7ce2b317a3f5eab2b9abae0749f size: 1661
   369	time="2024-10-10T12:32:40-07:00" level=trace msg="--> GET https://reg:5000/v2/"
   370	time="2024-10-10T12:32:40-07:00" level=trace msg="GET /v2/ HTTP/1.1"
   371	time="2024-10-10T12:32:40-07:00" level=trace msg="Host: reg:5000"
   372	time="2024-10-10T12:32:40-07:00" level=trace msg="User-Agent: Go-http-client/1.1"
   373	time="2024-10-10T12:32:40-07:00" level=trace msg="Accept-Encoding: gzip"
   374	time="2024-10-10T12:32:40-07:00" level=trace
   375	time="2024-10-10T12:32:40-07:00" level=trace
   376	time="2024-10-10T12:32:40-07:00" level=trace msg="<-- tls: first record does not look like a TLS handshake GET https://reg:5000/v2/ (1.789021ms)"
   377	time="2024-10-10T12:32:40-07:00" level=trace msg="--> GET http://reg:5000/v2/"
   378	time="2024-10-10T12:32:40-07:00" level=trace msg="GET /v2/ HTTP/1.1"
   379	time="2024-10-10T12:32:40-07:00" level=trace msg="Host: reg:5000"
   380	time="2024-10-10T12:32:40-07:00" level=trace msg="User-Agent: Go-http-client/1.1"
   381	time="2024-10-10T12:32:40-07:00" level=trace msg="Accept-Encoding: gzip"
   382	time="2024-10-10T12:32:40-07:00" level=trace
   383	time="2024-10-10T12:32:40-07:00" level=trace
   384	time="2024-10-10T12:32:40-07:00" level=trace msg="<-- 200 http://reg:5000/v2/ (2.727244ms)"
   385	time="2024-10-10T12:32:40-07:00" level=trace msg="HTTP/1.1 200 OK"
   386	time="2024-10-10T12:32:40-07:00" level=trace msg="Content-Length: 2"
   387	time="2024-10-10T12:32:40-07:00" level=trace msg="Content-Type: application/json; charset=utf-8"
   388	time="2024-10-10T12:32:40-07:00" level=trace msg="Date: Thu, 10 Oct 2024 19:32:40 GMT"
   389	time="2024-10-10T12:32:40-07:00" level=trace msg="Docker-Distribution-Api-Version: registry/2.0"
   390	time="2024-10-10T12:32:40-07:00" level=trace msg="X-Content-Type-Options: nosniff"
   391	time="2024-10-10T12:32:40-07:00" level=trace
   392	time="2024-10-10T12:32:40-07:00" level=trace msg="{}"
   393	time="2024-10-10T12:32:40-07:00" level=trace msg="--> GET http://reg:5000/v2/serve_filebeat_metrics/manifests/2024-10-10_12-32-39_linux_arm64"
   394	time="2024-10-10T12:32:40-07:00" level=trace msg="GET /v2/serve_filebeat_metrics/manifests/2024-10-10_12-32-39_linux_arm64 HTTP/1.1"
   395	time="2024-10-10T12:32:40-07:00" level=trace msg="Host: reg:5000"
   396	time="2024-10-10T12:32:40-07:00" level=trace msg="User-Agent: go-containerregistry/v0.19.1"
   397	time="2024-10-10T12:32:40-07:00" level=trace msg="Accept: application/vnd.docker.distribution.manifest.list.v2+json,application/vnd.oci.image.index.v1+json"
   398	time="2024-10-10T12:32:40-07:00" level=trace msg="Accept-Encoding: gzip"
   399	time="2024-10-10T12:32:40-07:00" level=trace
   400	time="2024-10-10T12:32:40-07:00" level=trace
   401	time="2024-10-10T12:32:40-07:00" level=trace msg="<-- 404 http://reg:5000/v2/serve_filebeat_metrics/manifests/2024-10-10_12-32-39_linux_arm64 (4.92936ms)"
   402	time="2024-10-10T12:32:40-07:00" level=trace msg="HTTP/1.1 404 Not Found"
   403	time="2024-10-10T12:32:40-07:00" level=trace msg="Content-Length: 122"
   404	time="2024-10-10T12:32:40-07:00" level=trace msg="Content-Type: application/json; charset=utf-8"
   405	time="2024-10-10T12:32:40-07:00" level=trace msg="Date: Thu, 10 Oct 2024 19:32:40 GMT"
   406	time="2024-10-10T12:32:40-07:00" level=trace msg="Docker-Distribution-Api-Version: registry/2.0"
   407	time="2024-10-10T12:32:40-07:00" level=trace msg="X-Content-Type-Options: nosniff"
   408	time="2024-10-10T12:32:40-07:00" level=trace
   409	time="2024-10-10T12:32:40-07:00" level=trace msg="{\"errors\":[{\"code\":\"MANIFEST_UNKNOWN\",\"message\":\"OCI manifest found, but accept header does not support OCI manifests\"}]}"
   410	time="2024-10-10T12:32:40-07:00" level=trace
   411	time="2024-10-10T12:32:40-07:00" level=trace msg="--> GET https://reg:5000/v2/"
   412	time="2024-10-10T12:32:40-07:00" level=trace msg="GET /v2/ HTTP/1.1"
   413	time="2024-10-10T12:32:40-07:00" level=trace msg="Host: reg:5000"
   414	time="2024-10-10T12:32:40-07:00" level=trace msg="User-Agent: Go-http-client/1.1"
   415	time="2024-10-10T12:32:40-07:00" level=trace msg="Accept-Encoding: gzip"
   416	time="2024-10-10T12:32:40-07:00" level=trace
   417	time="2024-10-10T12:32:40-07:00" level=trace
   418	time="2024-10-10T12:32:40-07:00" level=trace msg="<-- tls: first record does not look like a TLS handshake GET https://reg:5000/v2/ (1.503478ms)"
   419	time="2024-10-10T12:32:40-07:00" level=trace msg="--> GET http://reg:5000/v2/"
   420	time="2024-10-10T12:32:40-07:00" level=trace msg="GET /v2/ HTTP/1.1"
   421	time="2024-10-10T12:32:40-07:00" level=trace msg="Host: reg:5000"
   422	time="2024-10-10T12:32:40-07:00" level=trace msg="User-Agent: Go-http-client/1.1"
   423	time="2024-10-10T12:32:40-07:00" level=trace msg="Accept-Encoding: gzip"
   424	time="2024-10-10T12:32:40-07:00" level=trace
   425	time="2024-10-10T12:32:40-07:00" level=trace
   426	time="2024-10-10T12:32:40-07:00" level=trace msg="<-- 200 http://reg:5000/v2/ (2.09873ms)"
   427	time="2024-10-10T12:32:40-07:00" level=trace msg="HTTP/1.1 200 OK"
   428	time="2024-10-10T12:32:40-07:00" level=trace msg="Content-Length: 2"
   429	time="2024-10-10T12:32:40-07:00" level=trace msg="Content-Type: application/json; charset=utf-8"
   430	time="2024-10-10T12:32:40-07:00" level=trace msg="Date: Thu, 10 Oct 2024 19:32:40 GMT"
   431	time="2024-10-10T12:32:40-07:00" level=trace msg="Docker-Distribution-Api-Version: registry/2.0"
   432	time="2024-10-10T12:32:40-07:00" level=trace msg="X-Content-Type-Options: nosniff"
   433	time="2024-10-10T12:32:40-07:00" level=trace
   434	time="2024-10-10T12:32:40-07:00" level=trace msg="{}"
   435	time="2024-10-10T12:32:40-07:00" level=trace msg="--> GET http://reg:5000/v2/serve_filebeat_metrics/manifests/2024-10-10_12-32-39_linux_arm64"
   436	time="2024-10-10T12:32:40-07:00" level=trace msg="GET /v2/serve_filebeat_metrics/manifests/2024-10-10_12-32-39_linux_arm64 HTTP/1.1"
   437	time="2024-10-10T12:32:40-07:00" level=trace msg="Host: reg:5000"
   438	time="2024-10-10T12:32:40-07:00" level=trace msg="User-Agent: go-containerregistry/v0.19.1"
   439	time="2024-10-10T12:32:40-07:00" level=trace msg="Accept: application/vnd.docker.distribution.manifest.v1+json,application/vnd.docker.distribution.manifest.v1+prettyjws,application/vnd.docker.distribution.manifest.v2+json,application/vnd.oci.image.manifest.v1+json,application/vnd.docker.distribution.manifest.list.v2+json,application/vnd.oci.image.index.v1+json"
   440	time="2024-10-10T12:32:40-07:00" level=trace msg="Accept-Encoding: gzip"
   441	time="2024-10-10T12:32:40-07:00" level=trace
   442	time="2024-10-10T12:32:40-07:00" level=trace
   443	time="2024-10-10T12:32:40-07:00" level=trace msg="<-- 200 http://reg:5000/v2/serve_filebeat_metrics/manifests/2024-10-10_12-32-39_linux_arm64 (2.781337ms)"
   444	time="2024-10-10T12:32:40-07:00" level=trace msg="HTTP/1.1 200 OK"
   445	time="2024-10-10T12:32:40-07:00" level=trace msg="Content-Length: 1683"
   446	time="2024-10-10T12:32:40-07:00" level=trace msg="Content-Type: application/vnd.oci.image.manifest.v1+json"
   447	time="2024-10-10T12:32:40-07:00" level=trace msg="Date: Thu, 10 Oct 2024 19:32:40 GMT"
   448	time="2024-10-10T12:32:40-07:00" level=trace msg="Docker-Content-Digest: sha256:7b33be2f342f1b8a6c1810a178642d758e1cb7ce2b317a3f5eab2b9abae0749f"
   449	time="2024-10-10T12:32:40-07:00" level=trace msg="Docker-Distribution-Api-Version: registry/2.0"
   450	time="2024-10-10T12:32:40-07:00" level=trace msg="Etag: \"sha256:7b33be2f342f1b8a6c1810a178642d758e1cb7ce2b317a3f5eab2b9abae0749f\""
   451	time="2024-10-10T12:32:40-07:00" level=trace msg="X-Content-Type-Options: nosniff"
   452	time="2024-10-10T12:32:40-07:00" level=trace
   453	time="2024-10-10T12:32:40-07:00" level=trace msg="{\"schemaVersion\":2,\"mediaType\":\"application/vnd.oci.image.manifest.v1+json\",\"config\":{\"mediaType\":\"application/vnd.oci.image.config.v1+json\",\"digest\":\"sha256:4328ecb5a8b4abbffa2fcc2b0c6f02009e02ec7736d688dffd5e91cb1a15af54\",\"size\":5424},\"layers\":[{\"mediaType\":\"application/vnd.oci.image.layer.v1.tar+gzip\",\"digest\":\"sha256:aed6481c86ad17b8b57c77b5b7aa87325bc8f7c8c7c49bf3ac332507a611255f\",\"size\":4173378},{\"mediaType\":\"application/vnd.oci.image.layer.v1.tar+gzip\",\"digest\":\"sha256:30064b9e1ac31f2c3e4b09abfd7003fbe42490ceb9a74a55ab1ff97d78796b0f\",\"size\":463943},{\"mediaType\":\"application/vnd.oci.image.layer.v1.tar+gzip\",\"digest\":\"sha256:5530bd950b7c24292edf13862fd1857553bc59f3db8439d66a5dfefa589744e9\",\"size\":13681517},{\"mediaType\":\"application/vnd.oci.image.layer.v1.tar+gzip\",\"digest\":\"sha256:0115b548271a8ee5577da317e9a7bb0f8ac514fbdd3498d56e0d377123f269bc\",\"size\":268},{\"mediaType\":\"application/vnd.oci.image.layer.v1.tar+gzip\",\"digest\":\"sha256:657872b4fc33f19b8b31b6807948f3f4e56eb5474e89d0956af8eddeedaea844\",\"size\":755}],\"annotations\":{\"com.docker.official-images.bashbrew.arch\":\"arm64v8\",\"org.opencontainers.image.base.digest\":\"sha256:b1b79627c53f4d0a76ad7076494af4909e05bfde5379e7d5b71df34ba52be2e2\",\"org.opencontainers.image.base.name\":\"docker.io/library/python:3.12-alpine\",\"org.opencontainers.image.created\":\"2024-10-01T10:04:25Z\",\"org.opencontainers.image.revision\":\"4babb0e3da12a080e249f0d15c61404ac2e5d3b0\",\"org.opencontainers.image.source\":\"https://github.com/docker-library/python.git#4babb0e3da12a080e249f0d15c61404ac2e5d3b0:3.12/alpine3.20\",\"org.opencontainers.image.url\":\"https://hub.docker.com/_/python\",\"org.opencontainers.image.version\":\"3.12.7-alpine3.20\"}}"
   454	time="2024-10-10T12:32:40-07:00" level=trace msg="--> GET https://reg:5000/v2/"
   455	time="2024-10-10T12:32:40-07:00" level=trace msg="GET /v2/ HTTP/1.1"
   456	time="2024-10-10T12:32:40-07:00" level=trace msg="Host: reg:5000"
   457	time="2024-10-10T12:32:40-07:00" level=trace msg="User-Agent: Go-http-client/1.1"
   458	time="2024-10-10T12:32:40-07:00" level=trace msg="Accept-Encoding: gzip"
   459	time="2024-10-10T12:32:40-07:00" level=trace
   460	time="2024-10-10T12:32:40-07:00" level=trace
   461	time="2024-10-10T12:32:40-07:00" level=trace msg="<-- tls: first record does not look like a TLS handshake GET https://reg:5000/v2/ (1.43093ms)"
   462	time="2024-10-10T12:32:40-07:00" level=debug msg="Running command: [tput colors]" subtask=-1 task=DevLoop
   463	time="2024-10-10T12:32:40-07:00" level=debug msg="Command output: [256\n]" subtask=-1 task=DevLoop
   464	Get "https://reg:5000/v2/": http: server gave HTTP response to HTTPS client
   465	time="2024-10-10T12:32:40-07:00" level=debug msg="exporting metrics" subtask=-1 task=DevLoop
   466	time="2024-10-10T12:32:41-07:00" level=debug msg="metrics uploading complete in 664.494543ms" subtask=-1 task=DevLoop
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant