diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-08-18 15:06:19 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-18 15:06:19 -0400 |
commit | fa206e11caf5af38ad47cbfebbe18046c562fb6d (patch) | |
tree | ef07c56ade783e9d9deab2ce8da79d3a92698ede /pkg/domain/entities | |
parent | 4ec227079011faef53e22b868d475a831b1f9e89 (diff) | |
parent | cd40c875ac51b32f7b4e5479d02faee14e0ab12d (diff) | |
download | podman-fa206e11caf5af38ad47cbfebbe18046c562fb6d.tar.gz podman-fa206e11caf5af38ad47cbfebbe18046c562fb6d.tar.bz2 podman-fa206e11caf5af38ad47cbfebbe18046c562fb6d.zip |
Merge pull request #11180 from baude/buildplaykube
Add ability to build images in play kube
Diffstat (limited to 'pkg/domain/entities')
-rw-r--r-- | pkg/domain/entities/play.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pkg/domain/entities/play.go b/pkg/domain/entities/play.go index 89dfc08e9..01de73ebe 100644 --- a/pkg/domain/entities/play.go +++ b/pkg/domain/entities/play.go @@ -10,6 +10,8 @@ import ( type PlayKubeOptions struct { // Authfile - path to an authentication file. Authfile string + // Indicator to build all images with Containerfile or Dockerfile + Build bool // CertDir - to a directory containing TLS certifications and keys. CertDir string // Username for authenticating against the registry. |