[CHORE] Formatted Everything
This commit is contained in:
parent
455ceb11e4
commit
8c21184145
6 changed files with 36 additions and 27 deletions
|
@ -1,8 +1,8 @@
|
|||
name: Deploy Edge
|
||||
run-name: ${{ gitea.actor }} Deploy Edge
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
push:
|
||||
branches: [master]
|
||||
|
||||
env:
|
||||
GITEA_TOKEN: ${{ secrets.ELYSIUM_ORG_READ_TOKEN }}
|
||||
|
@ -13,12 +13,12 @@ env:
|
|||
jobs:
|
||||
deploy-edge:
|
||||
steps:
|
||||
- name: Oasis Setup
|
||||
uses: https://gitea.dunemask.dev/elysium/oasis-action@master
|
||||
with:
|
||||
gitea-token: ${{ env.GITEA_TOKEN }}
|
||||
kubeconfig: ${{ env.KUBECONFIG_BASE64 }}
|
||||
oasis-prod-config: ${{ env. OASIS_PROD_CONFIG }}
|
||||
- name: Deploy to Edge env
|
||||
run: garden deploy $GARDEN_DEPLOY_ACTION --env usw-edge
|
||||
working-directory: ${{ env.OASIS_WORKSPACE }}
|
||||
- name: Oasis Setup
|
||||
uses: https://gitea.dunemask.dev/elysium/oasis-action@master
|
||||
with:
|
||||
gitea-token: ${{ env.GITEA_TOKEN }}
|
||||
kubeconfig: ${{ env.KUBECONFIG_BASE64 }}
|
||||
oasis-prod-config: ${{ env. OASIS_PROD_CONFIG }}
|
||||
- name: Deploy to Edge env
|
||||
run: garden deploy $GARDEN_DEPLOY_ACTION --env usw-edge
|
||||
working-directory: ${{ env.OASIS_WORKSPACE }}
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
name: S3 Repo Backup
|
||||
run-name: ${{ gitea.actor }} S3 Repo Backup
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
push:
|
||||
branches: [master]
|
||||
|
||||
env:
|
||||
S3_BACKUP_ENDPOINT: https://s3.dunemask.dev
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
# Nile
|
||||
|
||||
Nile is a modern digital portfolio for Dunemask
|
||||
|
||||
# WIP
|
|
@ -1,6 +1,6 @@
|
|||
import Typography from "@mui/material/Typography";
|
||||
import Box from "@mui/material/Box";
|
||||
import Link from "@mui/material/Link"
|
||||
import Link from "@mui/material/Link";
|
||||
|
||||
// Function to format a date as MMM DD, YYYY
|
||||
function formatDate(date) {
|
||||
|
@ -41,7 +41,13 @@ export default function Upgrades() {
|
|||
Process Started {formatDate(now)} and will end{" "}
|
||||
{formatDate(twoWeeksFromNow)}
|
||||
</Typography>
|
||||
<Typography variant="h6"> If you need to get in contact with me sooner, please email me at <Link href="mailto:elijahglennparker@outlook.com">elijahglennparker@outlook.com</Link></Typography>
|
||||
<Typography variant="h6">
|
||||
{" "}
|
||||
If you need to get in contact with me sooner, please email me at{" "}
|
||||
<Link href="mailto:elijahglennparker@outlook.com">
|
||||
elijahglennparker@outlook.com
|
||||
</Link>
|
||||
</Typography>
|
||||
</Box>
|
||||
</Box>
|
||||
);
|
||||
|
|
|
@ -1,15 +1,13 @@
|
|||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: {{ include "nile.fullname" . }}
|
||||
labels:
|
||||
{{- include "nile.labels" . | nindent 4 }}
|
||||
name: { { include "nile.fullname" . } }
|
||||
labels: { { - include "nile.labels" . | nindent 4 } }
|
||||
spec:
|
||||
type: {{ .Values.service.type }}
|
||||
type: { { .Values.service.type } }
|
||||
ports:
|
||||
- port: {{ .Values.service.port }}
|
||||
- port: { { .Values.service.port } }
|
||||
targetPort: http
|
||||
protocol: TCP
|
||||
name: http
|
||||
selector:
|
||||
{{- include "nile.selectorLabels" . | nindent 4 }}
|
||||
selector: { { - include "nile.selectorLabels" . | nindent 4 } }
|
||||
|
|
12
values.yaml
12
values.yaml
|
@ -25,10 +25,12 @@ serviceAccount:
|
|||
|
||||
podAnnotations: {}
|
||||
|
||||
podSecurityContext: {}
|
||||
podSecurityContext:
|
||||
{}
|
||||
# fsGroup: 2000
|
||||
|
||||
securityContext: {}
|
||||
securityContext:
|
||||
{}
|
||||
# capabilities:
|
||||
# drop:
|
||||
# - ALL
|
||||
|
@ -46,7 +48,8 @@ containerPort:
|
|||
ingress:
|
||||
enabled: false
|
||||
className: ""
|
||||
annotations: {}
|
||||
annotations:
|
||||
{}
|
||||
# kubernetes.io/ingress.class: nginx
|
||||
# kubernetes.io/tls-acme: "true"
|
||||
hosts:
|
||||
|
@ -59,7 +62,8 @@ ingress:
|
|||
# hosts:
|
||||
# - tut.local
|
||||
|
||||
resources: {}
|
||||
resources:
|
||||
{}
|
||||
# We usually recommend not to specify default resources and to leave this as a conscious
|
||||
# choice for the user. This also increases chances charts run on environments with little
|
||||
# resources, such as Minikube. If you do want to specify resources, uncomment the following
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue