Last active
September 12, 2017 21:38
-
-
Save ecliptik/690d393bacd98fcc8313a9e45987ec84 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: extensions/v1beta1 | |
kind: Deployment | |
metadata: | |
name: aci-connector | |
namespace: default | |
spec: | |
replicas: 1 | |
template: | |
metadata: | |
labels: | |
app: aci-connector | |
spec: | |
serviceAccountName: aci-connector-sa | |
containers: | |
- name: aci-connector | |
image: ecliptik/aci-connector-k8s:alpine-armhf | |
imagePullPolicy: Always | |
env: | |
- name: AZURE_CLIENT_ID | |
value: 00000-000-00000-0000-0000 | |
- name: AZURE_CLIENT_KEY | |
value: 00000-000-00000-0000-0000 | |
- name: AZURE_TENANT_ID | |
value: 00000-000-00000-0000-0000 | |
- name: AZURE_SUBSCRIPTION_ID | |
value: 100000-000-00000-0000-0000 | |
- name: ACI_RESOURCE_GROUP | |
value: aci-test |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment