Cody Moore
Cody Moore
We're upgrading to vsphere 7 and could use this
> > > When can this plug-in signature be approved successfully? It can't be used! > > > > > > Current status: waiting for manual review > > (allow_loading_unsigned_plugins...
I had the same issue with using argocd with openshift oauth. I was able to emulate the oauth flow in python pretty easily. It should be possible to translate this...
Our developer using the metallb-operator asked that the ^ovn.* and ^br-.* interfaces be excluded from the speaker announcements. He was seeing issues with packet loss and failed connections. I can...
Additional details from our developer: The issue is that MetalLB passthrough transport to the service is not compatible with OVN anti-spoofing. Flow: Upstream/Client sends SYN to Server IP MetalLB speaker...
Yes, we are running on OpenShift. I can open a support case, however after swapping from operator to helm deployment and updating the exclude config map manually, the issue was...
It's not that easy, but you can create an AgroalDataSource directly ```java // create supplier AgroalDataSourceConfigurationSupplier dataSourceConfiguration = new AgroalDataSourceConfigurationSupplier(); // get reference to connection pool AgroalConnectionPoolConfigurationSupplier poolConfiguration = dataSourceConfiguration.connectionPoolConfiguration();...
You can also use an `AgroalPropertiesReader` ```java Map props=new HashMap(); props.put(AgroalPropertiesReader.MAX_SIZE,"10"); props.put(AgroalPropertiesReader.MIN_SIZE,"10"); props.put(AgroalPropertiesReader.INITIAL_SIZE,"10"); props.put(AgroalPropertiesReader.MAX_LIFETIME_S,"300"); props.put(AgroalPropertiesReader.ACQUISITION_TIMEOUT_S,"30"); props.put(AgroalPropertiesReader.JDBC_URL,"jdbcUrl"); props.put(AgroalPropertiesReader.PRINCIPAL,"username"); props.put(AgroalPropertiesReader.CREDENTIAL,"password"); AgroalDataSource datasource = AgroalDataSource.from(new AgroalPropertiesReader() .readProperties(props) .get()); ```