export MESSAGE=Humanitec
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
spec: | |
containers: | |
- env: | |
- name: DATABASE_HOST | |
value: postgres | |
- name: DATABASE_NAME | |
value: product | |
- name: DATABASE_PASSWORD | |
value: pr0dr0b0t | |
- name: DATABASE_USER |
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
echo "hello" $MESSAGE |
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
export MESSAGE=Humanitec |
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
the application is frozen | Frozen | |
---|---|---|
nothing works | Frozen | |
the application says incompatible | Incompatible | |
it won't work on my computer | Incompatible | |
i can't upload | UploadFail | |
my file won't upload | UploadFail | |
i got an error | ErrorMessage | |
there's an error message | ErrorMessage | |
it says file too large | LargeFile | |
an error message says file too big | LargeFile |
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: v1 | |
kind: Service | |
metadata: | |
name: product-fe | |
spec: | |
type: NodePort | |
ports: | |
- protocol: TCP | |
port: 8080 | |
targetPort: 8080 |
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: apps/v1 | |
kind: Deployment | |
metadata: | |
name: product-fe | |
spec: | |
replicas: 1 | |
selector: | |
matchLabels: | |
app: ecommerce | |
tier: frontend |
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: v1 | |
kind: Service | |
metadata: | |
labels: | |
app: ecommerce | |
tier: backend | |
name: product-be | |
spec: | |
type: NodePort | |
ports: |
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: apps/v1 | |
kind: Deployment | |
metadata: | |
labels: | |
app: ecommerce | |
tier: backend | |
name: product-be | |
spec: | |
replicas: 2 | |
selector: |
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: v1 | |
kind: Service | |
metadata: | |
name: postgres | |
labels: | |
app: ecommerce | |
tier: postgres | |
spec: | |
type: NodePort | |
ports: |