File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -91,6 +91,8 @@ export default function newApplicationUpdater(applicationId) {
9191 dockerImage
9292 sourceCodeCompressedFileName
9393 }
94+ capabilities
95+ sysctls
9496 }
9597 }
9698 ` , {
@@ -291,6 +293,8 @@ export default function newApplicationUpdater(applicationId) {
291293 dockerImage
292294 sourceCodeCompressedFileName
293295 }
296+ capabilities
297+ sysctls
294298 }
295299 }
296300 ` , {
@@ -441,7 +445,9 @@ export default function newApplicationUpdater(applicationId) {
441445 imageRegistryCredentialID : sourceConfigurationRef . imageRegistryCredentialID ,
442446 dockerImage : sourceConfigurationRef . dockerImage ,
443447 sourceCodeCompressedFileName : sourceConfigurationRef . sourceCodeCompressedFileName ,
444- dockerfile : sourceConfigurationRef . dockerfile
448+ dockerfile : sourceConfigurationRef . dockerfile ,
449+ capabilities : applicationExistingDetails . capabilities ,
450+ sysctls : applicationExistingDetails . sysctls
445451 }
446452 }
447453
Original file line number Diff line number Diff line change @@ -50,7 +50,9 @@ const newApplicationState = reactive({
5050 codePath: ' ' ,
5151 imageRegistryCredentialID: 0 ,
5252 dockerImage: ' ' ,
53- sourceCodeCompressedFileName: ' '
53+ sourceCodeCompressedFileName: ' ' ,
54+ capabilities: [],
55+ sysctls: []
5456})
5557
5658// Deploy application
You can’t perform that action at this time.
0 commit comments