---
title: Image Configuration
description: Provides values to define kubernetes image information to deployments and statefulsets.
component: helm
page_id: helm::configs/image
canonical_url: https://developer.pingidentity.com/helm/configs/image.html
section_ids:
  global-section: Global Section
  product-section: Product Section
---

# Image Configuration

Provides values to define kubernetes image information to deployments and statefulsets.

## Global Section

Default image yaml defined in the global section:

```yaml
global:
  image:
    repository: pingidentity
    name:        # Set in product section
    tag: 2307
    pullPolicy: Always
  imagePullSecrets: []  # As needed for authentication to private repositories
  # - name: myregkeysecretname
```

## Product Section

Each product section specifies the name by default.

```yaml
pingaccess-admin:
  image:
    name: pingaccess
```

To have images use a different repository and tag, use the following:

```yaml
global:
  image:
    tag: edge
    repository: my.company.docker-repo.com
```

This snippet would result in pulling a PingAccess image from `my.company.docker-repo.com/pingaccess:edge`.
