File tree Expand file tree Collapse file tree 2 files changed +12
-10
lines changed Expand file tree Collapse file tree 2 files changed +12
-10
lines changed Original file line number Diff line number Diff line change 1
- 0.13 .0
1
+ 0.14 .0
Original file line number Diff line number Diff line change @@ -72,11 +72,12 @@ type (
72
72
}
73
73
74
74
CreateRuntimeOptions struct {
75
- Cluster string
76
- Namespace string
77
- HasAgent bool
78
- StorageClass string
79
- RunnerType string
75
+ Cluster string
76
+ Namespace string
77
+ HasAgent bool
78
+ StorageClass string
79
+ RunnerType string
80
+ DockerDaemonParams string
80
81
}
81
82
82
83
ValidateRuntimeOptions struct {
@@ -110,10 +111,11 @@ func (r *runtimeEnvironment) Create(opt *CreateRuntimeOptions) (*RuntimeEnvironm
110
111
},
111
112
}
112
113
body := map [string ]interface {}{
113
- "clusterName" : opt .Cluster ,
114
- "namespace" : opt .Namespace ,
115
- "storageClassName" : opt .StorageClass ,
116
- "runnerType" : opt .RunnerType ,
114
+ "clusterName" : opt .Cluster ,
115
+ "namespace" : opt .Namespace ,
116
+ "storageClassName" : opt .StorageClass ,
117
+ "runnerType" : opt .RunnerType ,
118
+ "dockerDaemonParams" : opt .DockerDaemonParams ,
117
119
}
118
120
if opt .HasAgent {
119
121
body ["agent" ] = true
You can’t perform that action at this time.
0 commit comments