Skip to content

Commit

Permalink
Merge pull request #8583 from lordofthejars/patch-1
Browse files Browse the repository at this point in the history
Update default imagePullPolicy value in docs
  • Loading branch information
geoand authored Apr 15, 2020
2 parents 7894a22 + 53869f0 commit e58cbca
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/src/main/asciidoc/deploying-to-kubernetes.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ The full source of the `kubernetes.json` file looks something like this:
}
} ],
"image" : "yourDockerUsername/test-quarkus-app:1.0-SNAPSHOT",
"imagePullPolicy" : "IfNotPresent",
"imagePullPolicy" : "Always",
"name" : "test-quarkus-app"
} ]
}
Expand Down Expand Up @@ -390,7 +390,7 @@ The table below describe all the available configuration options.
| quarkus.kubernetes.azure-disk-volumes | Map<String, AzureDiskVolume> | |
| quarkus.kubernetes.azure-file-volumes | Map<String, AzureFileVolume> | |
| quarkus.kubernetes.mounts | Map<String, Mount> | |
| quarkus.kubernetes.image-pull-policy | ImagePullPolicy | | IfNotPresent
| quarkus.kubernetes.image-pull-policy | ImagePullPolicy | | Always
| quarkus.kubernetes.image-pull-secrets | String[] | |
| quarkus.kubernetes.liveness-probe | Probe | | ( see Probe )
| quarkus.kubernetes.readiness-probe | Probe | | ( see Probe )
Expand Down Expand Up @@ -453,7 +453,7 @@ Below you will find tables describing all available types.
| arguments | String[] | |
| ports | Port[] | |
| mounts | Mount[] | |
| image-pull-policy | ImagePullPolicy | | IfNotPresent
| image-pull-policy | ImagePullPolicy | | Always
| liveness-probe | Probe | |
| readiness-probe | Probe | |
|====
Expand Down Expand Up @@ -595,7 +595,7 @@ The OpenShift resources can be customized in a similar approach with Kubernetes.
| quarkus.openshift.azure-disk-volumes | Map<String, AzureDiskVolume> | |
| quarkus.openshift.azure-file-volumes | Map<String, AzureFileVolume> | |
| quarkus.openshift.mounts | Map<String, Mount> | |
| quarkus.openshift.image-pull-policy | ImagePullPolicy | | IfNotPresent
| quarkus.openshift.image-pull-policy | ImagePullPolicy | | Always
| quarkus.openshift.image-pull-secrets | String[] | |
| quarkus.openshift.liveness-probe | Probe | | ( see Probe )
| quarkus.openshift.readiness-probe | Probe | | ( see Probe )
Expand Down Expand Up @@ -645,7 +645,7 @@ The full source of the `quarkus.knative.json` file looks something like this:
"spec" : {
"container" : {
"image" : "dev.local/yourDockerUsername/test-quarkus-app:1.0-SNAPSHOT",
"imagePullPolicy" : "IfNotPresent"
"imagePullPolicy" : "Always"
}
}
}
Expand Down Expand Up @@ -691,7 +691,7 @@ The generated service can be customized using the following properties:
| quarkus.knative.azure-disk-volumes | Map<String, AzureDiskVolume> | |
| quarkus.knative.azure-file-volumes | Map<String, AzureFileVolume> | |
| quarkus.knative.mounts | Map<String, Mount> | |
| quarkus.knative.image-pull-policy | ImagePullPolicy | | IfNotPresent
| quarkus.knative.image-pull-policy | ImagePullPolicy | | Always
| quarkus.knative.image-pull-secrets | String[] | |
| quarkus.knative.liveness-probe | Probe | | ( see Probe )
| quarkus.knative.readiness-probe | Probe | | ( see Probe )
Expand Down

0 comments on commit e58cbca

Please sign in to comment.