Installing on Kubernetes cluster

This page describes how to install Piped on Kubernetes cluster.

Prerequisites

Having piped’s ID and Key strings
  • Ensure that the piped has been registered and you are having its PIPED_ID and PIPED_KEY strings.
  • If you are not having them, this page guides you how to register a new one.
Preparing SSH key
  • If your Git repositories are private, piped requires a private SSH key to access those repositories.
  • Please checkout this documentation for how to generate a new SSH key pair. Then add the public key to your repositories. (If you are using GitHub, you can add it to Deploy Keys at the repository’s Settings page.)

In the cluster-wide mode

This way requires installing cluster-level resources. Piped installed with this way can perform deployment workloads against any other namespaces than the where Piped runs on.

  • Preparing a piped configuration file as the following

    apiVersion: pipecd.dev/v1beta1
    kind: Piped
    spec:
      projectID: {PROJECT_ID}
      pipedID: {PIPED_ID}
      pipedKeyFile: /etc/piped-secret/piped-key
      # Write in a format like "host:443" because the communication is done via gRPC.
      apiAddress: {CONTROL_PLANE_API_ADDRESS}
      git:
        sshKeyFile: /etc/piped-secret/ssh-key
      repositories:
        - repoId: {REPO_ID_OR_NAME}
          remote: git@github.com:{GIT_ORG}/{GIT_REPO}.git
          branch: {GIT_BRANCH}
      syncInterval: 1m
    
  • Installing by using Helm (3.8.0 or later)

    # This command just installs a Piped with the specified version.
    # Whenever you want to upgrade that Piped to a new version or update its config data
    # you have to restart it by re-running this command.
    
    helm upgrade -i dev-piped oci://ghcr.io/pipe-cd/chart/piped --version=v0.46.0 --namespace={NAMESPACE} \
      --set-file config.data={PATH_TO_PIPED_CONFIG_FILE} \
      --set-file secret.data.piped-key={PATH_TO_PIPED_KEY_FILE} \
      --set-file secret.data.ssh-key={PATH_TO_PRIVATE_SSH_KEY_FILE}
      
    # Enable remote-upgrade feature of Piped.
    # https://pipecd.dev/docs/user-guide/managing-piped/remote-upgrade-remote-config/#remote-upgrade
    # This allows upgrading Piped to a new version from the web console.
    # But we still need to restart Piped when we want to update its config data.
    
    helm upgrade -i dev-piped oci://ghcr.io/pipe-cd/chart/piped --version=v0.46.0 --namespace={NAMESPACE} \
      --set launcher.enabled=true \
      --set-file config.data={PATH_TO_PIPED_CONFIG_FILE} \
      --set-file secret.data.piped-key={PATH_TO_PIPED_KEY_FILE} \
      --set-file secret.data.ssh-key={PATH_TO_PRIVATE_SSH_KEY_FILE}
      
    # Enable both remote-upgrade and remote-config features of Piped.
    # https://pipecd.dev/docs/user-guide/managing-piped/remote-upgrade-remote-config/#remote-config
    # Beside of the ability to upgrade Piped to a new version from the web console,
    # remote-config allows loading the Piped config stored in a remote location such as a Git repository.
    # Whenever the config data is changed, it loads the new config and restarts Piped to use that new config.
    
    helm upgrade -i dev-piped oci://ghcr.io/pipe-cd/chart/piped --version=v0.46.0 --namespace={NAMESPACE} \
      --set launcher.enabled=true \
      --set launcher.configFromGitRepo.enabled=true \
      --set launcher.configFromGitRepo.repoUrl=git@github.com:{GIT_ORG}/{GIT_REPO}.git \
      --set launcher.configFromGitRepo.branch={GIT_BRANCH} \
      --set launcher.configFromGitRepo.configFile={RELATIVE_PATH_TO_PIPED_CONFIG_FILE_IN_GIT_REPO} \
      --set launcher.configFromGitRepo.sshKeyFile=/etc/piped-secret/ssh-key \
      --set-file secret.data.piped-key={PATH_TO_PIPED_KEY_FILE} \
      --set-file secret.data.ssh-key={PATH_TO_PRIVATE_SSH_KEY_FILE}
      

    Note: Be sure to set --set args.insecure=true if your Control Plane has not TLS-enabled yet.

    See values.yaml for the full values.

In the namespaced mode

The previous way requires installing cluster-level resources. If you want to restrict Piped’s permission within the namespace where Piped runs on, this way is for you. Most parts are identical to the previous way, but some are slightly different.

  • Adding a new cloud provider like below to the previous piped configuration file

    apiVersion: pipecd.dev/v1beta1
    kind: Piped
    spec:
      projectID: {PROJECT_ID}
      pipedID: {PIPED_ID}
      pipedKeyFile: /etc/piped-secret/piped-key
      # Write in a format like "host:443" because the communication is done via gRPC.
      apiAddress: {CONTROL_PLANE_API_ADDRESS}
      git:
        sshKeyFile: /etc/piped-secret/ssh-key
      repositories:
        - repoId: REPO_ID_OR_NAME
          remote: git@github.com:{GIT_ORG}/{GIT_REPO}.git
          branch: {GIT_BRANCH}
      syncInterval: 1m
      # This is needed to restrict to limit the access range to within a namespace.
      platformProviders:
        - name: my-kubernetes
          type: KUBERNETES
          config:
            appStateInformer:
              namespace: {NAMESPACE}
    
  • Installing by using Helm (3.8.0 or later)

    # This command just installs a Piped with the specified version.
    # Whenever you want to upgrade that Piped to a new version or update its config data
    # you have to restart it by re-running this command.
    
    helm upgrade -i dev-piped oci://ghcr.io/pipe-cd/chart/piped --version=v0.46.0 --namespace={NAMESPACE} \
      --set-file config.data={PATH_TO_PIPED_CONFIG_FILE} \
      --set-file secret.data.piped-key={PATH_TO_PIPED_KEY_FILE} \
      --set-file secret.data.ssh-key={PATH_TO_PRIVATE_SSH_KEY_FILE} \
      --set args.enableDefaultKubernetesCloudProvider=false \
      --set rbac.scope=namespace
      
    # Enable remote-upgrade feature of Piped.
    # https://pipecd.dev/docs/user-guide/managing-piped/remote-upgrade-remote-config/#remote-upgrade
    # This allows upgrading Piped to a new version from the web console.
    # But we still need to restart Piped when we want to update its config data.
    
    helm upgrade -i dev-piped oci://ghcr.io/pipe-cd/chart/piped --version=v0.46.0 --namespace={NAMESPACE} \
      --set launcher.enabled=true \
      --set-file config.data={PATH_TO_PIPED_CONFIG_FILE} \
      --set-file secret.data.piped-key={PATH_TO_PIPED_KEY_FILE} \
      --set-file secret.data.ssh-key={PATH_TO_PRIVATE_SSH_KEY_FILE} \
      --set args.enableDefaultKubernetesCloudProvider=false \
      --set rbac.scope=namespace
      
    # Enable both remote-upgrade and remote-config features of Piped.
    # https://pipecd.dev/docs/user-guide/managing-piped/remote-upgrade-remote-config/#remote-config
    # Beside of the ability to upgrade Piped to a new version from the web console,
    # remote-config allows loading the Piped config stored in a remote location such as a Git repository.
    # Whenever the config data is changed, it loads the new config and restarts Piped to use that new config.
    
    helm upgrade -i dev-piped oci://ghcr.io/pipe-cd/chart/piped --version=v0.46.0 --namespace={NAMESPACE} \
      --set launcher.enabled=true \
      --set launcher.configFromGitRepo.enabled=true \
      --set launcher.configFromGitRepo.repoUrl=git@github.com:{GIT_ORG}/{GIT_REPO}.git \
      --set launcher.configFromGitRepo.branch={GIT_BRANCH} \
      --set launcher.configFromGitRepo.configFile={RELATIVE_PATH_TO_PIPED_CONFIG_FILE_IN_GIT_REPO} \
      --set launcher.configFromGitRepo.sshKeyFile=/etc/piped-secret/ssh-key \
      --set-file secret.data.piped-key={PATH_TO_PIPED_KEY_FILE} \
      --set-file secret.data.ssh-key={PATH_TO_PRIVATE_SSH_KEY_FILE} \
      --set args.enableDefaultKubernetesCloudProvider=false \
      --set rbac.scope=namespace
      

In case on OpenShift less than 4.2

OpenShift uses an arbitrarily assigned user ID when it starts a container. Starting from OpenShift 4.2, it also inserts that user into /etc/passwd for using by the application inside the container, but before that version, the assigned user is missing in that file. That blocks workloads of gcr.io/pipecd/piped image. Therefore if you are running on OpenShift with a version before 4.2, please use gcr.io/pipecd/piped-okd image with the following command:

  • Installing by using Helm (3.8.0 or later)

    # This command just installs a Piped with the specified version.
    # Whenever you want to upgrade that Piped to a new version or update its config data
    # you have to restart it by re-running this command.
    
    helm upgrade -i dev-piped oci://ghcr.io/pipe-cd/chart/piped --version=v0.46.0 --namespace={NAMESPACE} \
      --set-file config.data={PATH_TO_PIPED_CONFIG_FILE} \
      --set-file secret.data.piped-key={PATH_TO_PIPED_KEY_FILE} \
      --set-file secret.data.ssh-key={PATH_TO_PRIVATE_SSH_KEY_FILE} \
      --set args.enableDefaultKubernetesCloudProvider=false \
      --set rbac.scope=namespace
      --set args.addLoginUserToPasswd=true \
      --set securityContext.runAsNonRoot=true \
      --set securityContext.runAsUser={UID} \
      --set securityContext.fsGroup={FS_GROUP} \
      --set securityContext.runAsGroup=0 \
      --set image.repository="ghcr.io/pipe-cd/piped-okd"
      
    # Enable remote-upgrade feature of Piped.
    # https://pipecd.dev/docs/user-guide/managing-piped/remote-upgrade-remote-config/#remote-upgrade
    # This allows upgrading Piped to a new version from the web console.
    # But we still need to restart Piped when we want to update its config data.
    
    helm upgrade -i dev-piped oci://ghcr.io/pipe-cd/chart/piped --version=v0.46.0 --namespace={NAMESPACE} \
      --set launcher.enabled=true \
      --set-file config.data={PATH_TO_PIPED_CONFIG_FILE} \
      --set-file secret.data.piped-key={PATH_TO_PIPED_KEY_FILE} \
      --set-file secret.data.ssh-key={PATH_TO_PRIVATE_SSH_KEY_FILE} \
      --set args.enableDefaultKubernetesCloudProvider=false \
      --set rbac.scope=namespace
      --set args.addLoginUserToPasswd=true \
      --set securityContext.runAsNonRoot=true \
      --set securityContext.runAsUser={UID} \
      --set securityContext.fsGroup={FS_GROUP} \
      --set securityContext.runAsGroup=0 \
      --set launcher.image.repository="ghcr.io/pipe-cd/launcher-okd"
      
    # Enable both remote-upgrade and remote-config features of Piped.
    # https://pipecd.dev/docs/user-guide/managing-piped/remote-upgrade-remote-config/#remote-config
    # Beside of the ability to upgrade Piped to a new version from the web console,
    # remote-config allows loading the Piped config stored in a remote location such as a Git repository.
    # Whenever the config data is changed, it loads the new config and restarts Piped to use that new config.
    
    helm upgrade -i dev-piped oci://ghcr.io/pipe-cd/chart/piped --version=v0.46.0 --namespace={NAMESPACE} \
      --set launcher.enabled=true \
      --set launcher.configFromGitRepo.enabled=true \
      --set launcher.configFromGitRepo.repoUrl=git@github.com:{GIT_ORG}/{GIT_REPO}.git \
      --set launcher.configFromGitRepo.branch={GIT_BRANCH} \
      --set launcher.configFromGitRepo.configFile={RELATIVE_PATH_TO_PIPED_CONFIG_FILE_IN_GIT_REPO} \
      --set launcher.configFromGitRepo.sshKeyFile=/etc/piped-secret/ssh-key \
      --set-file secret.data.piped-key={PATH_TO_PIPED_KEY_FILE} \
      --set-file secret.data.ssh-key={PATH_TO_PRIVATE_SSH_KEY_FILE} \
      --set args.enableDefaultKubernetesCloudProvider=false \
      --set rbac.scope=namespace
      --set args.addLoginUserToPasswd=true \
      --set securityContext.runAsNonRoot=true \
      --set securityContext.runAsUser={UID} \
      --set securityContext.fsGroup={FS_GROUP} \
      --set securityContext.runAsGroup=0 \
      --set launcher.image.repository="ghcr.io/pipe-cd/launcher-okd"
      

Last modified November 30, 2022: Release v0.40.0 (#4023) (4d616f64)