> For the complete CircleCI developer hub index, see [llms.txt](https://circleci.com/developer/llms.txt)

# finc/kustomize

Install kustomize

## Commands

### install

Install kustomize(v3.8.1 by default)

| Parameter | Type | Default | Description |
|---|---|---|---|
| `version` | string | v3.8.1 | Please see release page: https://github.com/kubernetes-sigs/kustomize/releases |

## Examples

### install

install kustomize

```yaml
version: 2.1
orbs:
  kustomize: finc/kustomize@0.0.1
jobs:
  build:
    docker:
      - image: circleci/golang:1.15
    steps:
      - kustomize/install
```