Skip to content

Commit

Permalink
Impl/app image pull (#151)
Browse files Browse the repository at this point in the history
* app image pull in progress

* image pull policy check box added, modifications in app setting for
compute and scaling

* label changed for image pull policy in app creation and app settings page
  • Loading branch information
nxtcoder36 authored Mar 15, 2024
1 parent 94293fd commit fca7458
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ const SettingCompute = () => {
/>

<Checkbox
label="Image Pull Policy"
label="Always pull image on restart"
checked={values.imagePullPolicy === 'Always'}
onChange={(val) => {
const imagePullPolicy = val ? 'Always' : 'IfNotPresent';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ const AppCompute = () => {
)}

<Checkbox
label="Image Pull Policy"
label="Always pull image on restart"
checked={values.imagePullPolicy === 'Always'}
onChange={(val) => {
const imagePullPolicy = val ? 'Always' : 'IfNotPresent';
Expand Down

0 comments on commit fca7458

Please sign in to comment.