Skip to content

Commit

Permalink
fix: remove ytt dependency everywhere (#284)
Browse files Browse the repository at this point in the history
  • Loading branch information
kbudde authored May 11, 2024
1 parent 1f91aa0 commit 8265abc
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 17 deletions.
6 changes: 0 additions & 6 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,6 @@ aurs:
license: "MIT"
private_key: "{{ .Env.AUR_SSH_KEY }}"
git_url: "ssh://[email protected]/myks-bin.git"
depends:
- ytt
optdepends:
- "vendir: for downloading from external sources"
- "git: for smart detection of changes"
Expand Down Expand Up @@ -77,10 +75,6 @@ brews:
type: optional
- name: helm
type: optional
- name: vendir
type: optional
- name: ytt
type: optional
repository:
owner: mykso
name: homebrew-tap
Expand Down
5 changes: 0 additions & 5 deletions dev.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ ARG TARGETOS
ARG TARGETARCH
# renovate: datasource=github-releases depName=helm/helm
ARG HELM_VERSION=v3.14.3
# renovate: datasource=github-releases depName=carvel-dev/ytt
ARG YTT_VERSION=v0.46.3

RUN apt-get update \
&& apt-get install --no-install-recommends -y \
Expand All @@ -36,9 +34,6 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"]
RUN curl -fsSL \
https://get.helm.sh/helm-v${HELM_VERSION}-${TARGETOS}-${TARGETARCH}.tar.gz \
| tar -xzf - --strip-components=1 ${TARGETOS}-${TARGETARCH}/helm
RUN curl -fsSL \
https://github.com/vmware-tanzu/carvel-ytt/releases/download/v${YTT_VERSION}/ytt-${TARGETOS}-${TARGETARCH} \
> ytt
RUN chmod +x *


Expand Down
8 changes: 2 additions & 6 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,8 @@ Depending on the installation method and on the desired features, you may need
to install some of the tools manually:

- [git] is required
- [ytt] is required
- [helm] is only needed for rendering Helm charts
- ([vendir] is now built into myks, no need to install separately)
- [ytt] and [vendir] are now built into myks, no need to install separately.

At the moment, we do not track compatibility between versions of these tools and
myks. Fairly recent versions should work fine.
Expand All @@ -83,8 +82,7 @@ yay -S myks-bin

See the
[container registry page](https://github.com/mykso/myks/pkgs/container/myks) for
the list of available images. The image includes the latest versions of `helm`
and `ytt`.
the list of available images. The image includes the latest versions of `helm`.

```shell
docker pull ghcr.io/mykso/myks:latest
Expand Down Expand Up @@ -179,8 +177,6 @@ For building and contributing:

For running:

- [ytt] 0.44+
- [vendir] 0.34+
- [helm] 3.12+

### Build
Expand Down

0 comments on commit 8265abc

Please sign in to comment.