$ 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: 26.0.0
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: 26.0.0
    namespace: wordpress
    valuesFiles:
    - wordpress-values.yaml
  manifests:
  - name: connect-services
    namespace: wordpress
    files:
    - connect-services.yaml
  images:
  - docker.io/bitnamilegacy/apache-exporter:1.0.10-debian-12-r55
  - docker.io/bitnamilegacy/mariadb:12.0.2-debian-12-r0
  - docker.io/bitnamilegacy/wordpress:6.8.2-debian-12-r4
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@zarf-dev.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