Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade Big Bang example to latest version #346

Merged
merged 13 commits into from
Mar 8, 2022
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repos:
- id: detect-private-key
exclude: |
(?x)^(
examples/big-bang/template/bigbang/values.yaml|
examples/big-bang/kustomizations/bigbang/values.yaml|
examples/software-factory/template/bigbang/values.yaml|
examples/istio-with-separate-cert/files/bigbangdev.key
)$
Expand Down
2 changes: 1 addition & 1 deletion examples/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ package-examples: package-example-big-bang package-example-software-factory pack

.PHONY: package-example-big-bang
package-example-big-bang: ## Create the Big Bang Core example
cd big-bang && $(ZARF_BIN) package create --confirm && mv zarf-package-* ../sync/
cd big-bang && $(ZARF_BIN) package create -l debug --confirm && mv zarf-package-* ../sync/
RothAndrew marked this conversation as resolved.
Show resolved Hide resolved

.PHONY: generate-bigbang-dev-cert
generate-bigbang-dev-cert: ## Download the TLS cert and key for the *.bigbang.dev domain
Expand Down
7 changes: 0 additions & 7 deletions examples/big-bang/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,13 +75,6 @@ make vm-init
./zarf tools k9s
```

### Delete buggy EnvoyFilter

```shell
# Delete this EnvoyFilter, it is bugged. Will be fixed when we update to a later version of Big Bang
kubectl delete -n istio-system envoyfilter/misdirected-request
```

### Clean Up

```shell
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
bases:
- git::https://repo1.dso.mil/platform-one/big-bang/bigbang.git/base?ref=tags/1.17.0
- git::https://repo1.dso.mil/platform-one/big-bang/bigbang.git/base?ref=tags/1.28.0

configMapGenerator:
- name: common
Expand Down
Loading