Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

done #3

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@
<li><a href="#">Mockups</a></li>
<li><a href="#">Toolkit</a></li>
</ul>

<ul class="subMenu small opacity-8">
<li><a href="#">Submit Product</a></li>
<li><a href="#">FAQ</a></li>
Expand Down Expand Up @@ -188,7 +189,6 @@
<button type="submit" class="button blue gradient ae-7 fromCenter" name="button">Get Started</button>
</form>
</div>

</div>
</div>
</div>
Expand Down Expand Up @@ -298,7 +298,6 @@ <h3 class="margin-top-3">Channels</h3>
</div>
<div class="background" style="background-image:url(assets/img/background/img-89.jpg)"></div>
</section>

<!-- Popup Video -->
<div class="popup autoplay" data-popup-id="89-3">
<div class="close"><svg><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#close"></use></svg></div>
Expand Down
23 changes: 23 additions & 0 deletions k8/deployment.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: mydeployment
spec:
strategy:
type: RollingUpdate
replicas: 2
selector:
matchLabels:
app: frontend
template:
metadata:
name: myPod
labels:
app: frontend
spec:
containers:
- name: myweb
imagePullPolicy: Always
image: abhishekraics001/appimage:V1
ports:
- containerPort: 80
13 changes: 13 additions & 0 deletions k8/service.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@

apiVersion: v1
kind: Service
metadata:
name: myfrontend-service
spec:
type: NodePort
ports:
- port: 80
targetPort: 80
nodePort: 30000
selector:
app: frontend