This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [FAILED] [318.123 seconds] | |
| [sig-node] Container Runtime Conformance Test container runtime conformance blackbox test when running a container with a new image [It] should be able to pull from private registry with credential provider [NodeConformance] [sig-node, NodeConformance] | |
| k8s.io/kubernetes/test/e2e_node/runtime_conformance_test.go:79 | |
| Timeline >> | |
| STEP: Creating a kubernetes client @ 11/05/25 03:25:32.709 | |
| STEP: Building a namespace api object, basename runtime-conformance @ 11/05/25 03:25:32.71 | |
| I1105 03:25:32.714037 1514312 framework.go:275] Skipping waiting for service account | |
| STEP: create the container @ 11/05/25 03:25:38.739 | |
| STEP: check the container status @ 11/05/25 03:25:38.742 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| PATH=$(pwd)/_output/bin:$PATH kubetest2 kind \ | |
| --test=ginkgo \ | |
| -- \ | |
| --focus-regex="should rotate a projected service account token for a pod in the Terminating state" \ | |
| --use-binaries-from-path | |
| I0612 03:40:48.780082 2400467 app.go:61] The files in RunDir shall not be part of Artifacts | |
| I0612 03:40:48.780218 2400467 app.go:62] pass rundir-in-artifacts flag True for RunDir to be part of Artifacts | |
| I0612 03:40:48.780271 2400467 app.go:64] RunDir for this run: "/usr/local/google/home/ydubovskoi/projects/oss-k8s/_rundir/32ee78fc-ac2b-4a7a-9ed2-bf313687b15a" | |
| I0612 03:40:48.784042 2400467 app.go:136] ID for this run: "32ee78fc-ac2b-4a7a-9ed2-bf313687b15a" | |
| I0612 03:40:48.832221 2400513 ginkgo.go:131] Using kubeconfig at /usr/local/google/home/ydubovskoi/.kube/config |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| apiVersion: v1 | |
| kind: Pod | |
| metadata: | |
| name: sa-token-test-pod | |
| namespace: default | |
| spec: | |
| terminationGracePeriodSeconds: 3600 | |
| containers: | |
| - name: test-container | |
| image: curlimages/curl:8.4.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| use anyhow::Result; | |
| use redis::Commands; | |
| use serde::{Deserialize, Serialize}; | |
| use std::fmt; | |
| use std::fmt::Formatter; | |
| use std::str::FromStr; | |
| const COORDINATE_PRECISION: usize = 4; | |
| const CACHE_TTL: usize = 2628000; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| Backoff policy for agile retrying with increasing delay | |
| """ | |
| import asyncio | |
| import logging | |
| from typing import Awaitable, Callable | |
| logger = logging.getLogger(__name__) | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Response: | |
| def __init__(self, content: dict, status: int): | |
| self.content = content | |
| self.status = status | |
| def make_request(content: dict, status: int) -> Response: | |
| return Response(content, status) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| Just a custom function, which allow you to use ARRAY_AGG aggregation function in TortoiseORM | |
| """ | |
| from typing import TYPE_CHECKING, Any, Optional, Type, cast, Iterable, Tuple | |
| from pypika import Table | |
| from pypika.functions import Function as PypikaFunction | |
| from tortoise.exceptions import ConfigurationError | |
| from tortoise.fields.relational import BackwardFKRelation, ForeignKeyFieldInstance, RelationalField |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| use bson; | |
| use bson::{decode_document, encode_document}; | |
| use serde::{Deserialize, Serialize}; | |
| use std::fs::File; | |
| use std::io::prelude::*; | |
| use std::io::{BufReader, BufWriter}; | |
| #[derive(Serialize, Deserialize, Debug)] | |
| struct Move { | |
| x: i32, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cargo install whalespotter | |
| Updating crates.io index | |
| Installing whalespotter v0.1.4 | |
| Compiling cfg-if v0.1.10 | |
| Compiling autocfg v1.0.0 | |
| Compiling libc v0.2.68 | |
| Compiling lazy_static v1.4.0 | |
| Compiling scopeguard v1.1.0 | |
| Compiling proc-macro2 v1.0.9 | |
| Compiling log v0.4.8 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import logging | |
| logging.basicConfig(level=logging.INFO, format='%(asctime)s [%(levelname)s] %(name)s: %(message)s') |
NewerOlder