Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The addon configuration schema from EKS web console does not allow customizing environment variables #31

Open
emguy opened this issue Oct 31, 2024 · 0 comments

Comments

@emguy
Copy link

emguy commented Oct 31, 2024

Hi, we noticed that the addon configuration schema of eks-pod-identity-agent from the EKS web console does not allow us to add customized environment variables.

However, this is allowed if we deploy the eks-pod-identity-agent through the helm chart.

We are requesting to make environment variables configurable through the addon configuration on the eks web console. Our team has some requirement of customzing proxy related environment variables.

The following is the latest addon configuration schema with version v1.3.2-eksbuild.2

{
  "$ref": "#/definitions/EksPodIdentityAgent",
  "$schema": "http://json-schema.org/draft-06/schema#",
  "definitions": {
    "Affinity": {
      "title": "Affinity Schema",
      "type": [
        "object",
        "null"
      ]
    },
    "Agent": {
      "additionalProperties": false,
      "properties": {
        "additionalArgs": {
          "type": [
            "object",
            "null"
          ]
        }
      },
      "title": "Agent Schema",
      "type": "object"
    },
    "EksPodIdentityAgent": {
      "additionalProperties": false,
      "properties": {
        "affinity": {
          "$ref": "#/definitions/Affinity"
        },
        "agent": {
          "$ref": "#/definitions/Agent"
        },
        "fullnameOverride": {
          "type": "string"
        },
        "image": {
          "$ref": "#/definitions/Image"
        },
        "imagePullSecrets": {
          "$ref": "#/definitions/ImagePullSecrets"
        },
        "init": {
          "$ref": "#/definitions/Init"
        },
        "nameOverride": {
          "type": "string"
        },
        "nodeSelector": {
          "$ref": "#/definitions/NodeSelector"
        },
        "podAnnotations": {
          "$ref": "#/definitions/PodAnnotations"
        },
        "priorityClassName": {
          "type": "string"
        },
        "resources": {
          "$ref": "#/definitions/Resources"
        },
        "tolerations": {
          "$ref": "#/definitions/Tolerations"
        },
        "updateStrategy": {
          "$ref": "#/definitions/UpdateStrategy"
        }
      },
      "title": "EksPodIdentityAgent",
      "type": "object"
    },
    "Image": {
      "additionalProperties": false,
      "properties": {
        "pullPolicy": {
          "type": [
            "string",
            "null"
          ]
        }
      },
      "title": "Image Schema",
      "type": "object"
    },
    "ImagePullSecrets": {
      "additionalProperties": false,
      "items": {
        "type": "object"
      },
      "title": "ImagePullSecrets Schema",
      "type": "array"
    },
    "Init": {
      "additionalProperties": false,
      "properties": {
        "additionalArgs": {
          "type": [
            "object",
            "null"
          ]
        },
        "create": {
          "type": "boolean"
        }
      },
      "title": "Init Schema",
      "type": "object"
    },
    "Limits": {
      "additionalProperties": false,
      "properties": {
        "cpu": {
          "type": "string"
        },
        "memory": {
          "type": "string"
        }
      },
      "title": "Limits Schema",
      "type": "object"
    },
    "NodeSelector": {
      "title": "NodeSelector Schema",
      "type": [
        "object",
        "null"
      ]
    },
    "PodAnnotations": {
      "title": "PodAnnotations Schema",
      "type": [
        "object",
        "null"
      ]
    },
    "Resources": {
      "additionalProperties": false,
      "properties": {
        "limits": {
          "$ref": "#/definitions/Limits"
        },
        "requests": {
          "$ref": "#/definitions/Limits"
        }
      },
      "title": "Resources Schema",
      "type": "object"
    },
    "Tolerations": {
      "additionalProperties": false,
      "items": {
        "type": "object"
      },
      "title": "Tolerations Schema",
      "type": "array"
    },
    "UpdateStrategy": {
      "title": "UpdateStrategy Schema",
      "type": [
        "object",
        "null"
      ]
    }
  },
  "description": "EKS Pod Identity Agent"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant