Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/k8s-destroy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Delete PR Deployment
run: |
kubectl config set-context --current --namespace="${KUBE_NAMESPACE}"
kubectl delete deployment,replicaset,ingress,all -l "app.kubernetes.io/instance=${RELEASE_NAME}"
helm uninstall "${RELEASE_NAME}"
kubectl delete secret "${RELEASE_NAME}-tls"

- name: Deactivate Github Deployment
Expand Down
2 changes: 1 addition & 1 deletion .holo/sources/laddr.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[holosource]
url = "https://github.com/CodeForPhilly/laddr"
ref = "refs/tags/v3.0.17"
ref = "refs/tags/v3.1.0"
2 changes: 1 addition & 1 deletion docs/operations/accessing-prod.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ The database, as well as application logs and shell, can be accessed via a `KUBE
2. Get the name of the currently running pods and store them in shell variables:

```bash
POD_NAME=$(kubectl -n code-for-philly get pod -l app.kubernetes.io/name=code-for-philly -o jsonpath='{.items[0].metadata.name}')
POD_NAME=$(kubectl -n code-for-philly get pod --field-selector=status.phase=Running -l app.kubernetes.io/name=code-for-philly -o jsonpath='{.items[0].metadata.name}')
```

### Open interactive backend shell
Expand Down