RUN apt update
RUN apt upgrade -y
RUN apt install -y apt-utils
RUN a2enmod rewrite
RUN apt install -y libmcrypt-dev
RUN apt install -y libicu-dev
RUN docker-php-ext-install -j$(nproc) intl
RUN apt-get install -y libfreetype6-dev libjpeg62-turbo-dev libpng12-dev
RUN docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/
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
build: | |
nodes: | |
analysis: | |
project_setup: | |
override: | |
- 'true' | |
tests: | |
override: | |
- ./vendor/bin/simple-phpunit | |
- sensiolabs-security-checker-run |
- Create other terraform stuff
- tf-backend,
- creds.auto.tfvars with hcloud_token
- ssh key:
mkdir keys; ssh-keygen -f id_rsa
- modify cloudinit.yml:
- change gitlab url
- ADD_YOUR_REGISTRY_TOKEN -> Set to the Gitlab Runner Registration Token
- Add more allowed images/services, if using gitlab registry, like that: registry.myinstance.com/administrators/docker-images/*, change base image etc.
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
#!/bin/bash | |
set -o errexit | |
set -o xtrace | |
main() { | |
local namespaces=$(list_namespaces) | |
for namespace in $namespaces; do | |
local tasks=$(list_tasks $namespace) |
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
############## etcd configuration ############## | |
# etcd_deployment_type: docker | |
# etcd_version: v3.3.10 | |
## Set level of detail for etcd exported metrics, specify 'extensive' to include histogram metrics. | |
# etcd_metrics: basic |
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: cluster.x-k8s.io/v1beta1 | |
kind: Cluster | |
metadata: | |
name: test | |
namespace: default | |
spec: | |
controlPlaneRef: | |
apiVersion: controlplane.cluster.x-k8s.io/v1beta1 | |
kind: MicroK8sControlPlane | |
name: test-control-plane |
OlderNewer