Skip to content

Commit

Permalink
documentation update
Browse files Browse the repository at this point in the history
  • Loading branch information
southalc committed Nov 29, 2024
1 parent f4e31b5 commit 394a7fe
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
9 changes: 6 additions & 3 deletions REFERENCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -715,12 +715,14 @@ podman::quadlet { 'jenkins':
},
Container => {
Image => 'docker.io/jenkins/jenkins:latest',
PublishPort => '8080:8080',
PublishPort => '50000:50000',
PublishPort => [
'5000:5000',
'8080:8080',
],
Volume => 'jenkins:/var/jenkins_home',
},
Service => {
TimeoutStartSec => '180',
TimeoutStartSec => '300',
},
},
}
Expand Down Expand Up @@ -791,6 +793,7 @@ Data type: `Hash`

A hash of values that's merged with settings to simplify module
usage. This allows running a container with nothing but an image defined.
See the "data/common.yaml" file for default values.

Default value: `{}`

Expand Down
9 changes: 6 additions & 3 deletions manifests/quadlet.pp
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
#
# @param defaults A hash of values that's merged with settings to simplify module
# usage. This allows running a container with nothing but an image defined.
# See the "data/common.yaml" file for default values.
#
# @example
# podman::quadlet { 'jenkins':
Expand All @@ -31,12 +32,14 @@
# },
# Container => {
# Image => 'docker.io/jenkins/jenkins:latest',
# PublishPort => '8080:8080',
# PublishPort => '50000:50000',
# PublishPort => [
# '5000:5000',
# '8080:8080',
# ],
# Volume => 'jenkins:/var/jenkins_home',
# },
# Service => {
# TimeoutStartSec => '180',
# TimeoutStartSec => '300',
# },
# },
# }
Expand Down

0 comments on commit 394a7fe

Please sign in to comment.