Marc Saegesser
Marc Saegesser
I'm running into this same problem trying to test a database that has an auto increment field. The new value of the auto increment field is known inside run() but...
[This comment](https://github.com/zio/zio-nio/pull/393#issuecomment-933614043) on a PR from a couple months ago describes a work-around for this problem. I thought I'd share it here to make it more visible to others facing...
The documentation for [roleBinding](https://kubernetes.io/docs/reference/access-authn-authz/rbac/#rolebinding-and-clusterrolebinding) says that their names must be valid [path segment names](https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#path-segment-names). That restricts them to not contain things like `.`, `..`, `/`, etc. but doesn't seem to...
The -SNAPSHOT suffix is being used to indicate uncommitted changes rather than to indicate a non-tagged commit. This causes problems for things like CI/CD pipelines, which, almost by definition, never...