1
0
mirror of https://github.com/taigrr/nats.docs synced 2025-01-18 04:03:23 -08:00

Fixed apiVersion for eks-efs-provisioner (#212)

* Fixed apiVersion for eks-efs-provisioner

* Update stan-ft-k8s-aws.md
This commit is contained in:
Karan Kumar 2021-02-10 00:22:01 +05:30 committed by GitHub
parent b32623381c
commit d3dd6913fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -60,7 +60,8 @@ metadata:
name: run-efs-provisioner name: run-efs-provisioner
subjects: subjects:
- kind: ServiceAccount - kind: ServiceAccount
name: efs-provisioner name:
efs-provisioner
# replace with namespace where provisioner is deployed # replace with namespace where provisioner is deployed
namespace: default namespace: default
roleRef: roleRef:
@ -102,11 +103,14 @@ data:
dns.name: "" dns.name: ""
--- ---
kind: Deployment kind: Deployment
apiVersion: extensions/v1beta1 apiVersion: apps/v1
metadata: metadata:
name: efs-provisioner name: efs-provisioner
spec: spec:
replicas: 1 replicas: 1
selector:
matchLabels:
app: efs-provisioner
strategy: strategy:
type: Recreate type: Recreate
template: template:
@ -457,4 +461,3 @@ Subscribe to get all the messages:
```bash ```bash
stan-sub -c stan -all foo stan-sub -c stan -all foo
``` ```