I hereby claim:
- I am christianh814 on github.
- I am christianh814 (https://keybase.io/christianh814) on keybase.
- I have a public key ASAOkQxGPLoY_PZJrpuzERNKzxWZf454MsBfsFA64SNxHgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| FROM registry.access.redhat.com/ubi8/ubi:latest | |
| RUN yum -y install --disableplugin=subscription-manager httpd \ | |
| && yum -y --disableplugin=subscription-manager clean all | |
| ADD index.html /var/www/html/index.html | |
| RUN sed -i 's/Listen 80/Listen 8080/' /etc/httpd/conf/httpd.conf \ | |
| && chgrp -R 0 /var/log/httpd /var/run/httpd \ | |
| && chmod -R g=u /var/log/httpd /var/run/httpd |
| FROM registry.access.redhat.com/ubi8/ubi:8.1 | |
| RUN yum -y --disableplugin=subscription-manager -y module enable php:7.3 \ | |
| && yum -y install --disableplugin=subscription-manager httpd php \ | |
| && yum -y --disableplugin=subscription-manager clean all | |
| ADD index.php /var/www/html/index.php | |
| RUN sed -i 's/Listen 80/Listen 8080/' /etc/httpd/conf/httpd.conf \ | |
| && mkdir /run/php-fpm \ |
| #--------------------------------------------------------------------- | |
| # Example configuration for a possible web application. See the | |
| # full configuration options online. | |
| # | |
| # http://haproxy.1wt.eu/download/1.4/doc/configuration.txt | |
| # | |
| #--------------------------------------------------------------------- | |
| #--------------------------------------------------------------------- | |
| # Global settings |
Argo CD service
$ kubectl get svc -n argocd argocd-server
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
argocd-server ClusterIP 172.30.198.16 <none> 80/TCP,443/TCP 73m| apiVersion: apps/v1 | |
| kind: Deployment | |
| metadata: | |
| creationTimestamp: null | |
| labels: | |
| app: example | |
| name: example | |
| spec: | |
| replicas: 1 | |
| selector: |
| apiVersion: v1 | |
| kind: ConfigMap | |
| metadata: | |
| name: argocd-cm | |
| namespace: argocd | |
| annotations: | |
| argocd.argoproj.io/sync-options: ServerSideApply=true | |
| data: | |
| resource.customizations: | | |
| argoproj.io/Application: |
| apiVersion: argoproj.io/v1alpha1 | |
| kind: Application | |
| metadata: | |
| name: guestbook | |
| namespace: argocd | |
| finalizers: | |
| - resources-finalizer.argocd.argoproj.io | |
| spec: | |
| project: default | |
| source: |
| apiVersion: apps/v1 | |
| kind: Deployment | |
| metadata: | |
| creationTimestamp: null | |
| labels: | |
| app: nginx | |
| name: nginx | |
| namespace: demo | |
| spec: | |
| replicas: 1 |