Matias Manavella

Results 38 comments of Matias Manavella

@marccampbell Hi Marc, I contacted the guys from fuga.cloud to ask them if they have a way to identify their nodes (either a label or a providerID but the told...

@marccampbell this pr would work as you propose, eg.: ```YAML regexGroups: 'Version (?P\d+\.\d+.\d+)' outcomes: - fail: when: 'version < 1.19.0' message: Your Kotsadm version does not meet required minimum version....

@marccampbell I've worked in a more intuitive alternative, troubleshoots decides which comparison case to use based on the found value and the value in the when statement. I am not...

@marccampbell @markpundsack watching what Mark shared and thinking in making it imperative, I've rewritten it, and it would work like this: ```YAML regexGroups: 'Version (?P\d+\.\d+.\d+)' outcomes: - fail: when: 'semverCompare...

@markpundsack I could work on more complex ranges for the semver comparison. Actually I only considered the usual operators (

@markpundsack new version, supporting: - semverCompare(variable operator version), for straightforward ,=... comparison - semverRange(varible, range) for complex range expresions, supporting the expressions described [here](https://godoc.org/github.com/blang/semver/v4#ParseRange.) I used regex to extract valid...

@laverya @dexhorthy I've been thinking of ways to make run collector and text analyzer more "compatible". I think the following modifications must be made: - Run collector should save the...

@laverya @dexhorthy I dug further into this, and found that in the Run collector, CollectorName is actually used as PodName, and Name is use as the root folder of the...

New example would look like this: ```yaml apiVersion: troubleshoot.sh/v1beta2 kind: Preflight metadata: name: example spec: collectors: - run: collectorName: "run-ping" image: busybox:1 podName: ping namespace: default command: ["ping"] args: ["-w",...

@MikaelSmith Hi! Are you referring to the change of the `name` field to `podName`? or to the order in the filePath of the run collector logs? In the first case,...