Srinivasan Parthasarathy
Srinivasan Parthasarathy
The timer creation does work... however, the program seems to be exiting even though a timer was created -- which I am not sure is the desired behavior. Anyway, the...
Assume autox is watching for deployment objects in the test namespace. Suppose the user does the following. ```shell kubectl create deployment nginx --image=nginx -n test kubectl label deploy/nginx iter8.tools/autox-group=myApp -n...
During an `addObject` event -- assuming the object has appropriate Iter8 labels, if there already exist corresponding releases, we upgrade them. If not we create them. During an `updateObject` event;...
Concurrency: none. Ensure that all handler invocations run in sequence through a mutex. Example... ```go mu.Lock() defer mu.Unlock() // invoke handler here ... } ``` Here `mu` is a sync.Mutex...
@kalantar Could you also provide a sample html report output?
Hello. Yes, it can function on x86 architecture (and for that matter, on any architecture supported by golang cross compiler). Just to be sure, `darwin-amd64` is meant for MacOS. Did...
What is the OS and architecture on which you are running? *** Based on your comment, I am guessing you are attempting to run Iter8 on `ubuntu`. Assuming your arch...
On a) ```shell iter8 launch \ --set "tasks={ready,http,assess,slack}" \ --set slack.hook="https://hooks.slack.com/services/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" ``` seems like the simplest option. Similarly for `github`. ```shell iter8 launch \ --set "tasks={ready,http,assess,github}" \ --set github.parameter1=value1 \...
Lets discuss more re: the report structure. The JSON above looks good, but in terms of the dev strategy, there's probably opportunity here to simplify how `iter8 report` works today,...
In terms of the task templates... perhaps, the following design might work? ```yaml {{- define "task.slack" }} {{- if .Values.slack }} # task: send a slack notification - task: notify...