Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Warning

This page was translated from the original Japanese version by PLaMo Translate. The Japanese version is authoritative; the English translation may contain inaccuracies.

Using Container Images Provided by PFCP

This page provides instructions for utilizing the container images that PFCP provides as part of its cloud service. For information on using container images managed by your organization, please refer to About Customer-Managed Container Images.

Warning

PFCP-provided container images can only be accessed from within the PFCP Kubernetes cluster. Attempting to retrieve these images from any other environment will fail.

List of PFCP-Provided Container Images

You can view the list of container images provided by PFCP on the Images page of the portal.

Launching Workloads Using PFCP-Provided Container Images

Follow these steps to launch workloads using PFCP-provided container images:

  1. Specify the desired container image in the Pod’s spec.containers.image field:
    apiVersion: v1
    kind: Pod
    metadata:
      name: POD-NAME
    spec:
      containers:
      - name: CONTAINER-NAME
        image: registry.pfcomputing.internal/IMAGE:TAG
      ...
    
  2. Launch the Pod and verify that you can successfully retrieve the container image.