Results 77 comments of Jayson Minard

@Meztihn what would help here is if you report in the Kotlin Slack channel something about this, or in the YouTrack that you cannot convert the `KType` to a Java...

So store the AWS credentials in Kubernetes secrets, and then those can be injected into the environment of the operator, no?

@mumoshu we are not in EKS, but on-prem K8s, so we have to inject the environment variables into this operator so that it has the secrets to call out to...

Another odd example, using contacts JSON below: Fails: ``` contacts[?addresses[*].state == 'NY'].[firstName, lastName] ``` Succeeds: ``` contacts[?addresses[0].state == 'NY'].[firstName, lastName] ``` or ``` contacts[?addresses[?state == 'NY']].[firstName, lastName] ``` and the...

@ZacSweers it should be possible with FIR and you can test with a intellij community build, setting a registry key that allows non-official plugins to load. see notes here: https://kotlinlang.slack.com/archives/C7L3JB43G/p1695407727213849

@trahloff you can use `-c ` to switch between single other accounts, but not use multiple for a command (such as copy/sync), I use rclone for those other commands. https://linuxamination.blogspot.com/2017/12/s3cmd-configure-multiple-s3-accounts-on.html

You can avoid the rendering part by not showing the component until the resource is ready. Add `Show` as below ``` const Admin = async () => { const res...