mikekuzak

Results 22 comments of mikekuzak

@piotr-rudnik are you sue it's not #c.JSONWeb**LocalToken**Authenticator like in ``` #c.JSONWebLocalTokenAuthenticator.create_system_users = True ```

@TheFlatworm Jetty is not a JEE server, it's a HTTP Server with a Servlet Container. If AirSonic is using JEE functionality OpenLiberty would be more compatible to migrate to +...

Not sure why the downgrade seems 'fragile' ``` cgpt prioritize "$(cgpt find -t coreos-usr | grep --invert-match "$(rootdev -s /usr)")" ```

We are using noop at the moment. (no auth), but it would still be good that only internal admins have access. I'm looking into using Traefik 2.0 as proxy with...

@joaquimrocha Yes it looks that way ![image](https://user-images.githubusercontent.com/18675587/117806023-a7aa8f00-b251-11eb-96b3-f00896e0fe16.png) ``` Flatcar Container Linux by Kinvolk 4e502b30-9641-4651-b65f-e3f377adc241 (2765.2.3) ~ $ cat /etc/machine-id 9ce7a919806c4f3785eb6d260345ac4a ~ $ cat /etc/os-release NAME="Flatcar Container Linux by Kinvolk" ID=flatcar...

I worked around this with ignore changes ``` resource "rancher2_app_v2" "rancher-istio" { count = var.k8s_cluster_istio ? 1 : 0 # Rancher-istio requires rancher-monitoring depends_on = [rancher2_app_v2.applications] provider = rancher2.admin cluster_id...

I have a similar issue, each time I run our CI/CD pipeline changes are reported for the v2 apps ``` # rancher2_app_v2.applications["rancher-cis-benchmark"] must be replaced -/+ resource "rancher2_app_v2" "applications" {...

Hi, @rawmind0 Thanks for that. Is there a better way of doing this ? I'm using data "rancher2_cluster" to get the cluster id. ``` data "rancher2_cluster" "local" { provider =...

@rawmind0 Hi Raul, Do you think this will do the trick ? ``` lifecycle { ignore_changes = [ # Ignore changes to tags, e.g. because a management agent # updates...

I think rancher2_cluster_logging might be deprecated. You need to use ```"rancher2_app_v2" "rancher-logging"``` [rancher-logging](https://registry.terraform.io/providers/rancher/rancher2/latest/docs/guides/apps_marketplace#rancher-logging) But that will only install the logging plugin not the configuration of it.