Skip to content

Latest commit

 

History

History
38 lines (24 loc) · 877 Bytes

CONTRIBUTING.md

File metadata and controls

38 lines (24 loc) · 877 Bytes

Contributing to pulumi/eks

Building Source

Restore Vendor Dependencies

$ make ensure

Build and Install

Run the following command to build and install the source.

The output will be stored in /opt/pulumi/node_modules/@pulumi/eks.

$ make only_build

There is also a helper build script that restores the dependencies, builds, and installs the source.

cd into your Pulumi program directory. After make has completed, link the recent @pulumi/eks build from /opt/ by running the following command:

$ yarn link @pulumi/eks

Running Integration Tests

The examples and integration tests in this repository will create and destroy EKS clusters and Kubernetes objects while running.

Before submitting PRs, run the integration tests to confirm there are no errors.

$ make test_all