Skip to content

Commit e5d99e7

Browse files
authored
Merge pull request #3 from dtenenba/master
two minor issues
2 parents 40a79e4 + abb01b8 commit e5d99e7

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

.github/workflows/build.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ jobs:
4141
# Build and tag the image
4242
docker build \
4343
-t $CONTAINER_IMAGE \
44-
-t $GITHUB_REPOSITORY:$GITHUB_SHA \
4544
-t $AWS_ACCOUNT_ID.dkr.ecr.$AWS_DEFAULT_REGION.amazonaws.com/$CONTAINER_IMAGE ./app
4645
4746
# Add additional steps here like scanning of image

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ See this [technical blog post](https://www.weave.works/blog/gitops-with-github-a
99
1. Create an EKS cluster, e.g. using [`eksctl create cluster`](https://eksctl.io/)
1010
1. Set up Flux on the cluster, e.g. using [this guide](https://docs.fluxcd.io/en/latest/tutorials/get-started.html). Note that you must set `--git-path` to point to where your manifests are. For example:
1111
```bash
12-
export GHUSER=<github user account where your fork lives>
12+
export GHOWNER=<github user or organization account where your fork lives>
1313
export GHREPO=example-actions-flux-eks
1414

1515
kubectl create ns flux
1616

1717
fluxctl install \
1818
--git-user=${GHUSER} \
1919
--git-email=${GHUSER}@users.noreply.github.com \
20-
--git-url=git@github.com:${GHUSER}/${GHREPO} \
20+
--git-url=git@github.com:${GHOWNER}/${GHREPO} \
2121
--git-path=manifests \
2222
--namespace=flux | kubectl apply -f -
2323
```

0 commit comments

Comments
 (0)