Skip to content

Commit

Permalink
Changes to support Tilt integration for development (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
mkjpryor authored Dec 15, 2023
1 parent ef350ff commit 2ef8850
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
9 changes: 9 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,12 @@ Dockerfile
# Exclude Python caches
**/__pycache__
*.egg-info

# Ignore all other elements that aren't actually part of the build
.dockerignore
.github
.gitignore
.python-version
chart
CODEOWNERS
tilt-component.yaml
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ RUN set -ex; \
helm version

# Pull and unpack the Dex chart
ARG DEX_CHART_NAME
ARG DEX_CHART_REPO
ARG DEX_CHART_NAME=dex
ARG DEX_CHART_REPO=https://charts.dexidp.io
ARG DEX_CHART_VERSION
RUN helm pull ${DEX_CHART_NAME} \
--repo ${DEX_CHART_REPO} \
Expand Down
10 changes: 10 additions & 0 deletions tilt-component.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
chart: ./chart

images:
azimuth-identity-operator:
context: .
build_args:
HELM_VERSION: v3.13.2
# Use the latest stable version of the Dex chart
DEX_CHART_VERSION: ">=0.0.0"
chart_path: image

0 comments on commit 2ef8850

Please sign in to comment.