$ zarf package create .

Saving log file to /tmp/zarf-2023-05-06-21-02-22-601928677.log

Using build directory .

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

kind: ZarfPackageConfig
metadata:
  name: wordpress
  description: A Zarf Package that deploys the WordPress blogging and content management platform
  version: 16.0.4
components:
- name: wordpress
  description: Deploys the Bitnami-packaged WordPress chart into the cluster
  required: true
  charts:
  - name: wordpress
    url: oci://registry-1.docker.io/bitnamicharts/wordpress
    version: 16.0.4
    namespace: wordpress
    valuesFiles:
    - wordpress-values.yaml
  manifests:
  - name: connect-services
    namespace: wordpress
    files:
    - connect-services.yaml
  images:
  - docker.io/bitnami/apache-exporter:0.13.3-debian-11-r2
  - docker.io/bitnami/mariadb:10.11.2-debian-11-r21
  - docker.io/bitnami/wordpress:6.2.0-debian-11-r18
variables:
- name: WORDPRESS_USERNAME
  description: The username that is used to login to the WordPress admin account
  default: zarf
  prompt: true
- name: WORDPRESS_PASSWORD
  description: The password that is used to login to the WordPress admin account
  prompt: true
  sensitive: true
- name: WORDPRESS_EMAIL
  description: The email that is used for the WordPress admin account
  default: hello@defenseunicorns.com
  prompt: true
- name: WORDPRESS_FIRST_NAME
  description: The first name that is used for the WordPress admin account
  default: Zarf
  prompt: true
- name: WORDPRESS_LAST_NAME
  description: The last name that is used for the WordPress admin account
  default: The Axolotl
  prompt: true
- name: WORDPRESS_BLOG_NAME
  description: The blog name that is used for the WordPress admin account
  default: The Zarf Blog
  prompt: true

? Create this Zarf package? (y/N) Yes