Maxim Martynov

Results 137 comments of Maxim Martynov
trafficstars

@sourav-mazumder could you please leave a comment?

I was checking the size of one of my docker images, and found that tests are about 50% of the size of installed package: ![изображение](https://github.com/pandas-dev/pandas/assets/4661021/9fc4621e-900d-4d33-a28a-5dc7fec2be9a) Completely waste of space for...

> Did you call the make_service function multiple times to create a new service for every port? I've created new service for all the ports I need using Kubernetes API.

I'm using a slightly modified version of `kubespawner.spawner.get_service_manifest` which calls `kubespawner.objects.make_service` with different port number and service name, and then call k8s api with a copy of this code: https://github.com/jupyterhub/kubespawner/blob/cd4c08d5e175e3b6d58e279c27265e6e95e6197b/kubespawner/spawner.py#L2741-L2757

Yes, I create one more service to the same pod. Why not? These services are created with ower_reference, removing the pod automatically removes all the services. This is done by...

Same issue on 0.111.1 with code like: ```python from typing import Any from fastapi import FastAPI from pydantic import PlainValidator, WithJsonSchema from typing_extensions import Annotated, Doc from uuid6 import UUID...