Compare commits
7 Commits
Author | SHA1 | Date | |
---|---|---|---|
a03ed91900 | |||
3bd1b0e2b3 | |||
ca7ed6702d | |||
6b3b148ae0 | |||
b5bac8a1bb | |||
097d1d2905 | |||
5b69cd3cbf |
2
.dockerignore
Normal file
2
.dockerignore
Normal file
|
@ -0,0 +1,2 @@
|
|||
.git/
|
||||
k8s/
|
5
Dockerfile
Normal file
5
Dockerfile
Normal file
|
@ -0,0 +1,5 @@
|
|||
FROM nginx:alpine
|
||||
|
||||
COPY . /usr/share/nginx/html/
|
||||
|
||||
EXPOSE 80
|
10
index.html
10
index.html
|
@ -8538,8 +8538,8 @@
|
|||
<style>
|
||||
.fe-62bd62cf5f7f9a34c1c36f1c {
|
||||
--grid-gutter: calc(
|
||||
var(--sqs-mobile-site-gutter, 6vw) - 11px
|
||||
);
|
||||
var(--sqs-mobile-site-gutter, 6vw) - 11.0px
|
||||
);
|
||||
--cell-max-width: calc(
|
||||
(var(--sqs-site-max-width, 1500px) - (11px * (8 - 1))) /
|
||||
8
|
||||
|
@ -8886,7 +8886,7 @@
|
|||
>
|
||||
<div class="sqs-block-content">
|
||||
<div class="sqs-html-content">
|
||||
<h1 style="white-space: pre-wrap">Transformation</h1>
|
||||
<h1 style="white-space: pre-wrap; transition-timing-function: ease; transition-duration: 0.65s; transition-delay: 0.166667s; animation-duration: 0.65s;" class="preFade fadeIn">Transformation</h1>
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -13606,7 +13606,7 @@
|
|||
data-button-type="secondary"
|
||||
>
|
||||
<a
|
||||
href=""
|
||||
href="https://wa.me/62895331373024"
|
||||
class="sqs-block-button-element--large sqs-button-element--secondary sqs-block-button-element"
|
||||
>
|
||||
message US
|
||||
|
@ -14171,7 +14171,7 @@
|
|||
|
||||
|
||||
</div></div></div><div class="fe-block fe-block-yui_3_17_2_1_1656654191665_3170231"><div class="sqs-block html-block sqs-block-html" data-block-type="2" id="block-yui_3_17_2_1_1656654191665_3170231"><div class="sqs-block-content"><div class="sqs-html-content"><h4 style="white-space:pre-wrap;"><strong>ADDRESS</strong></h4>
|
||||
<p class="" style="white-space:pre-wrap;"><span class="sqsrte-text-color--accent"><strong>The H Tower</strong></span><span class="sqsrte-text-color--white">,</span> <br>Lt. 12 A lot G, Jl. Rasuna Said, Kuningan, Jakarta Selatan<br>
|
||||
<!--<p class="" style="white-space:pre-wrap;">--><span class="sqsrte-text-color--accent"><strong>The H Tower</strong></span><span class="sqsrte-text-color--white">,</span> <br>Lt. 12 A lot G, Jl. Rasuna Said, Kuningan, Jakarta Selatan<br>
|
||||
<span class="sqsrte-text-color--accent"><strong>Jl. Inspeksi Kalimalang</strong></span><span class="sqsrte-text-color--white">,</span> <br>Ruko Taman Bougenville Blok A/40, Bekasi, Jawa Barat<br>
|
||||
<span class="sqsrte-text-color--accent"><strong>Jl. Hanjuang VII No.88</strong><span class="sqsrte-text-color--white">,</span> </span> RT008/RW008, Jatibening Baru, Pondok Gede, Bekasi, Jawa Barat 17412</p>
|
||||
</div>
|
||||
|
|
22
k8s/production/deployment.yaml
Normal file
22
k8s/production/deployment.yaml
Normal file
|
@ -0,0 +1,22 @@
|
|||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: empatnusabangsa-web
|
||||
namespace: empatnusabangsa-production
|
||||
spec:
|
||||
selector:
|
||||
matchLabels:
|
||||
app: empatnusabangsa-web
|
||||
replicas: 1
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: empatnusabangsa-web
|
||||
spec:
|
||||
containers:
|
||||
- name: empatnusabangsa-web
|
||||
image: git.empatnusabangsa.com/empatnusabangsa/empatnusabangsa-web:<VERSION>
|
||||
ports:
|
||||
- containerPort: 80
|
||||
imagePullSecrets:
|
||||
- name: regcred
|
36
k8s/production/ingress.yaml
Normal file
36
k8s/production/ingress.yaml
Normal file
|
@ -0,0 +1,36 @@
|
|||
apiVersion: networking.k8s.io/v1
|
||||
kind: Ingress
|
||||
metadata:
|
||||
name: empatnusabangsa-web-ingress
|
||||
namespace: empatnusabangsa-production
|
||||
annotations:
|
||||
kubernetes.io/ingress.class: "traefik"
|
||||
cert-manager.io/cluster-issuer: letsencrypt-prod
|
||||
traefik.ingress.kubernetes.io/router.middlewares: empatnusabangsa-production-redirect-https@kubernetescrd
|
||||
spec:
|
||||
rules:
|
||||
- host: "www.empatnusabangsa.com"
|
||||
http:
|
||||
paths:
|
||||
- pathType: Prefix
|
||||
path: /
|
||||
backend:
|
||||
service:
|
||||
name: empatnusabangsa-web
|
||||
port:
|
||||
number: 80
|
||||
- host: "empatnusabangsa.com"
|
||||
http:
|
||||
paths:
|
||||
- pathType: Prefix
|
||||
path: /
|
||||
backend:
|
||||
service:
|
||||
name: empatnusabangsa-web
|
||||
port:
|
||||
number: 80
|
||||
tls:
|
||||
- hosts:
|
||||
- "www.empatnusabangsa.com"
|
||||
- "empatnusabangsa.com"
|
||||
secretName: www-empatnusabangsa-com-tls
|
9
k8s/production/middleware.yaml
Normal file
9
k8s/production/middleware.yaml
Normal file
|
@ -0,0 +1,9 @@
|
|||
apiVersion: traefik.containo.us/v1alpha1
|
||||
kind: Middleware
|
||||
metadata:
|
||||
name: redirect-https
|
||||
namespace: empatnusabangsa-production
|
||||
spec:
|
||||
redirectScheme:
|
||||
scheme: https
|
||||
permanent: true
|
4
k8s/production/namespace.yaml
Normal file
4
k8s/production/namespace.yaml
Normal file
|
@ -0,0 +1,4 @@
|
|||
apiVersion: v1
|
||||
kind: Namespace
|
||||
metadata:
|
||||
name: empatnusabangsa-production
|
13
k8s/production/service.yaml
Normal file
13
k8s/production/service.yaml
Normal file
|
@ -0,0 +1,13 @@
|
|||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: empatnusabangsa-web
|
||||
namespace: empatnusabangsa-production
|
||||
labels:
|
||||
run: empatnusabangsa-web
|
||||
spec:
|
||||
ports:
|
||||
- port: 80
|
||||
protocol: TCP
|
||||
selector:
|
||||
app: empatnusabangsa-web
|
Loading…
Reference in New Issue
Block a user