You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What is version of KubeSphere DevOps has the issue?
v3.3.1-rc.1
How did you install the Kubernetes? Or what is the Kubernetes distribution?
kubekey
What happened?
There is a parameter in the pipeline, named branch.
Refresh the dashboard.
Then add a new parameter test for the pipeline.
Two request,first post,then get,return two parameters。
but when click run,only show one parameter,until refresh the dashboard,will show two parameters。
Relevant log output
No response
Additional information
No response
The text was updated successfully, but these errors were encountered:
pipeline metadata cotroller
2.1. get metadata info from jenkins config
2.2. update pipeline cr metadata
2.3. repeated every 10s
Problem 1: The secondary reconcile flow will repeated every 10s, so may delay 10s at most after modify build parameters in console.
Problem2: When update build parameters in console, will send two request, one is put, another is get. When click run button, will not send get pipeline request, so console will not get correct parameters.
To solve the two problem:
When spec in pipeline cr update, trigger metadata controller reconcile, update pipeline cr metadata in time.
Because operation 1 is asynchronous,may be less than 1s delay, so console can not send get pipeline request just after a post pipeline request. Change the flow to:
a. Only send post pipeline request when update build parameters in console.
b. Send get pipeline request when user click run button, then load the latest build parameters.
What is version of KubeSphere DevOps has the issue?
v3.3.1-rc.1
How did you install the Kubernetes? Or what is the Kubernetes distribution?
kubekey
What happened?
There is a parameter in the pipeline, named
branch
.Refresh the dashboard.
Then add a new parameter
test
for the pipeline.Two request,first post,then get,return two parameters。
but when click run,only show one parameter,until refresh the dashboard,will show two parameters。
Relevant log output
No response
Additional information
No response
The text was updated successfully, but these errors were encountered: