mafei-github

Results 22 comments of mafei-github

volcano-v1alpha1-test

![8BAAE537-E693-4d88-969F-3602F070DBD9](https://github.com/fabric8io/kubernetes-client/assets/174586581/74b561e6-fc48-4383-94ae-0b434fa536ed) Is this necessary? How do you use it?

1: ![图片](https://github.com/fabric8io/kubernetes-client/assets/174586581/6520e1ca-facf-45d6-b965-5e0bd9ce6e55) 2: ![图片](https://github.com/fabric8io/kubernetes-client/assets/174586581/3c81f175-e9e6-450e-a1e5-282924f5c653) Are these two steps the way to use Java to access Volcano? How to create a pod inside a container?

![图片](https://github.com/fabric8io/kubernetes-client/assets/174586581/fbd68306-8dbf-4d62-a4a7-0a44fd081b6e) This is a pod created before, it is possible ![图片](https://github.com/fabric8io/kubernetes-client/assets/174586581/1be765bf-917b-4ad7-b821-395709db33b0) ![图片](https://github.com/fabric8io/kubernetes-client/assets/174586581/b402e1b4-987f-47b3-93d4-c91a5f57445a) ![图片](https://github.com/fabric8io/kubernetes-client/assets/174586581/0ea5766d-b7ca-4005-9e1a-bfd43e293cc7) May I ask why this cannot inherit the client's IP and port

![图片](https://github.com/user-attachments/assets/78b7410e-b479-4fe0-98f8-727a78aa5748) ![图片](https://github.com/user-attachments/assets/d21d19f4-b116-417b-858c-beb7a9211f67) ![图片](https://github.com/user-attachments/assets/3dd6c92c-5102-4b94-b677-98b4d6cb822d)

![图片](https://github.com/user-attachments/assets/ff5c332f-f0f6-4e20-aef5-9f4728fddf71) queue、podgroup volcanojob?

public interface V1beta1APIGroupDSL extends Client { MixedOperation podGroups(); MixedOperation queues(); MixedOperation volcanoJobs(); } ------ VolcanoJob volcanoJob = new VolcanoJobBuilder() .withNewMetadata() .withNamespace(namespace) .withName("test-job") .withLabels(baseLabels) // .withResourceVersion("66").withSelfLink("/apis/scheduling.volcano.sh/v1beta1/volcanojob/test-job") .endMetadata() .withNewSpec() .withSchedulerName("volcano") .withMinAvailable(1) .withWeight(2)...

[2NPU-volcanojob.txt](https://github.com/user-attachments/files/16244276/2NPU-volcanojob.txt) java.lang.IllegalStateException: com.fasterxml.jackson.databind.JsonMappingException: Conflicting setter definitions for property "volumes": com.dmai.model.common.k8s.volcano.model.src.scheduling.VolcanoJobSpec#setVolumes(1 params) vs com.dmai.model.common.k8s.volcano.model.src.scheduling.VolcanoJobSpec#setVolumeMounts(1 params)

step one:create queue ![图片](https://github.com/user-attachments/assets/c29608aa-7d53-42cc-be52-53204896e65f) is ok ![图片](https://github.com/user-attachments/assets/755949bc-1bb0-4f19-af2c-41d1c1449abd) ------------- step two:create podgroup ![图片](https://github.com/user-attachments/assets/2a372986-f63b-48ce-bbd4-607ca46a56a0) is ok ![图片](https://github.com/user-attachments/assets/79595335-e2f0-4294-b8ea-1d4b6b7cc01f) The queue and podgroup in the first two steps actually refers to this project --------------...