PHP Classes

File: src/Enums/ImagePullPolicy.php

Recommend this page to a friend!
  Classes of Angel Campos   Kubernetes Resource generator   src/Enums/ImagePullPolicy.php   Download  
File: src/Enums/ImagePullPolicy.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Kubernetes Resource generator
Generate a configuration for a Kubernetes resource
Author: By
Last change:
Date: 1 year ago
Size: 339 bytes
 

Contents

Class file image Download
<?php

namespace Acamposm\KubernetesResourceGenerator\Enums;

/**
 * The imagePullPolicy for a container and the tag of the image affect when the
 * kubelet attempts to pull (download) the specified image.
 */
enum ImagePullPolicy: string
{
    case
ALWAYS = 'Always';
    case
IF_NOT_PRESENT = 'IfNotPresent';
    case
NEVER = 'Never';
}