Skip to content

Commit b0b46e1

Browse files
Merge pull request #79 from CodeForPhilly/develop
Release: v1.2.0
2 parents 183eb94 + f8a9568 commit b0b46e1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/k8s-destroy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Delete PR Deployment
2828
run: |
2929
kubectl config set-context --current --namespace="${KUBE_NAMESPACE}"
30-
kubectl delete deployment,replicaset,ingress,all -l "app.kubernetes.io/instance=${RELEASE_NAME}"
30+
helm uninstall "${RELEASE_NAME}"
3131
kubectl delete secret "${RELEASE_NAME}-tls"
3232
3333
- name: Deactivate Github Deployment

.holo/sources/laddr.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[holosource]
22
url = "https://github.com/CodeForPhilly/laddr"
3-
ref = "refs/tags/v3.0.17"
3+
ref = "refs/tags/v3.1.0"

docs/operations/accessing-prod.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ The database, as well as application logs and shell, can be accessed via a `KUBE
3535
2. Get the name of the currently running pods and store them in shell variables:
3636

3737
```bash
38-
POD_NAME=$(kubectl -n code-for-philly get pod -l app.kubernetes.io/name=code-for-philly -o jsonpath='{.items[0].metadata.name}')
38+
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}')
3939
```
4040

4141
### Open interactive backend shell

0 commit comments

Comments
 (0)