├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── OWNERS ├── README.md ├── api └── library │ └── v1 │ └── types.go ├── arch ├── aarch64 │ └── official │ │ ├── cakephp │ │ └── templates │ │ │ ├── cakephp-mysql-example.json │ │ │ └── cakephp-mysql-persistent.json │ │ ├── dancer │ │ └── templates │ │ │ ├── dancer-mysql-example.json │ │ │ └── dancer-mysql-persistent.json │ │ ├── django │ │ └── templates │ │ │ ├── django-psql-example.json │ │ │ └── django-psql-persistent.json │ │ ├── dotnet │ │ └── imagestreams │ │ │ ├── dotnet-aspnet-rhel.json │ │ │ ├── dotnet-rhel.json │ │ │ └── dotnet-runtime-rhel.json │ │ ├── golang │ │ └── imagestreams │ │ │ └── golang-rhel-aarch64.json │ │ ├── httpd │ │ ├── imagestreams │ │ │ └── httpd-rhel-aarch64.json │ │ └── templates │ │ │ └── httpd-example.json │ │ ├── java │ │ ├── imagestreams │ │ │ ├── java-rhel-aarch64.json │ │ │ ├── java-runtime-ubi.json │ │ │ ├── ubi8-openjdk-11-rhel-aarch64.json │ │ │ ├── ubi8-openjdk-11-runtime-ubi.json │ │ │ ├── ubi8-openjdk-17-rhel-aarch64.json │ │ │ ├── ubi8-openjdk-17-runtime-ubi.json │ │ │ ├── ubi8-openjdk-21-rhel-aarch64.json │ │ │ ├── ubi8-openjdk-21-runtime-ubi.json │ │ │ ├── ubi8-openjdk-8-rhel-aarch64.json │ │ │ └── ubi8-openjdk-8-runtime-ubi.json │ │ └── templates │ │ │ └── openjdk-web-basic-s2i.json │ │ ├── jenkins │ │ ├── imagestreams │ │ │ ├── jenkins-agent-base-rhel.json │ │ │ └── jenkins-rhel.json │ │ └── templates │ │ │ ├── jenkins-ephemeral-monitored.json │ │ │ ├── jenkins-ephemeral.json │ │ │ ├── jenkins-persistent-monitored.json │ │ │ └── jenkins-persistent.json │ │ ├── mariadb │ │ ├── imagestreams │ │ │ └── mariadb-rhel-aarch64.json │ │ └── templates │ │ │ ├── mariadb-ephemeral.json │ │ │ └── mariadb-persistent.json │ │ ├── mysql │ │ ├── imagestreams │ │ │ └── mysql-rhel-aarch64.json │ │ └── templates │ │ │ ├── mysql-ephemeral.json │ │ │ └── mysql-persistent.json │ │ ├── nginx │ │ ├── imagestreams │ │ │ └── nginx-rhel-aarch64.json │ │ └── templates │ │ │ └── nginx-example.json │ │ ├── nodejs │ │ ├── imagestreams │ │ │ └── nodejs-rhel-aarch64.json │ │ └── templates │ │ │ ├── nodejs-postgresql-example.json │ │ │ ├── nodejs-postgresql-persistent.json │ │ │ └── react-web-app-example.json │ │ ├── perl │ │ └── imagestreams │ │ │ └── perl-rhel-aarch64.json │ │ ├── php │ │ └── imagestreams │ │ │ └── php-rhel-aarch64.json │ │ ├── postgresql │ │ ├── imagestreams │ │ │ └── postgresql-rhel-aarch64.json │ │ └── templates │ │ │ ├── postgresql-ephemeral.json │ │ │ └── postgresql-persistent.json │ │ ├── python │ │ └── imagestreams │ │ │ └── python-rhel-aarch64.json │ │ ├── rails │ │ └── templates │ │ │ ├── rails-pgsql-persistent.json │ │ │ └── rails-postgresql-example.json │ │ ├── redis │ │ ├── imagestreams │ │ │ └── redis-rhel-aarch64.json │ │ └── templates │ │ │ ├── redis-ephemeral.json │ │ │ └── redis-persistent.json │ │ └── ruby │ │ └── imagestreams │ │ └── ruby-rhel-aarch64.json ├── ppc64le │ └── official │ │ ├── cakephp │ │ └── templates │ │ │ ├── cakephp-mysql-example.json │ │ │ └── cakephp-mysql-persistent.json │ │ ├── dancer │ │ └── templates │ │ │ ├── dancer-mysql-example.json │ │ │ └── dancer-mysql-persistent.json │ │ ├── django │ │ └── templates │ │ │ ├── django-psql-example.json │ │ │ └── django-psql-persistent.json │ │ ├── dotnet │ │ └── imagestreams │ │ │ ├── dotnet-aspnet-rhel.json │ │ │ ├── dotnet-rhel.json │ │ │ └── dotnet-runtime-rhel.json │ │ ├── eap │ │ ├── imagestreams │ │ │ ├── jboss-eap-xp3-openjdk11-openshift-rhel8.json │ │ │ ├── jboss-eap-xp3-openjdk11-runtime-openshift-rhel8.json │ │ │ ├── jboss-eap-xp4-openjdk11-openshift-rhel8.json │ │ │ ├── jboss-eap-xp4-openjdk11-runtime-openshift-rhel8.json │ │ │ ├── jboss-eap74-openjdk11-openshift-rhel8.json │ │ │ └── jboss-eap74-openjdk11-runtime-openshift-rhel8.json │ │ └── templates │ │ │ ├── eap-xp3-basic-s2i.json │ │ │ ├── eap-xp4-basic-s2i.json │ │ │ ├── eap74-basic-s2i.json │ │ │ ├── eap74-https-s2i.json │ │ │ └── eap74-sso-s2i.json │ │ ├── golang │ │ └── imagestreams │ │ │ └── golang-rhel.json │ │ ├── httpd │ │ ├── imagestreams │ │ │ └── httpd-rhel.json │ │ └── templates │ │ │ └── httpd-example.json │ │ ├── java │ │ ├── imagestreams │ │ │ ├── java-rhel-ppc64le.json │ │ │ ├── java-runtime-ubi.json │ │ │ ├── openjdk-11-rhel7-rhel-ppc64le.json │ │ │ ├── redhat-openjdk18-openshift-rhel-ppc64le.json │ │ │ ├── ubi8-openjdk-11-rhel-ppc64le.json │ │ │ ├── ubi8-openjdk-11-runtime-ubi.json │ │ │ ├── ubi8-openjdk-17-rhel-ppc64le.json │ │ │ ├── ubi8-openjdk-17-runtime-ubi.json │ │ │ ├── ubi8-openjdk-21-rhel-ppc64le.json │ │ │ ├── ubi8-openjdk-21-runtime-ubi.json │ │ │ ├── ubi8-openjdk-8-rhel-ppc64le.json │ │ │ └── ubi8-openjdk-8-runtime-ubi.json │ │ └── templates │ │ │ └── openjdk-web-basic-s2i.json │ │ ├── jenkins │ │ ├── imagestreams │ │ │ ├── jenkins-agent-base-rhel.json │ │ │ └── jenkins-rhel.json │ │ └── templates │ │ │ ├── jenkins-ephemeral-monitored.json │ │ │ ├── jenkins-ephemeral.json │ │ │ ├── jenkins-persistent-monitored.json │ │ │ └── jenkins-persistent.json │ │ ├── mariadb │ │ ├── imagestreams │ │ │ └── mariadb-rhel.json │ │ └── templates │ │ │ ├── mariadb-ephemeral.json │ │ │ └── mariadb-persistent.json │ │ ├── mysql │ │ ├── imagestreams │ │ │ └── mysql-rhel.json │ │ └── templates │ │ │ ├── mysql-ephemeral.json │ │ │ └── mysql-persistent.json │ │ ├── nginx │ │ ├── imagestreams │ │ │ └── nginx-rhel.json │ │ └── templates │ │ │ └── nginx-example.json │ │ ├── nodejs │ │ ├── imagestreams │ │ │ └── nodejs-rhel.json │ │ └── templates │ │ │ ├── nodejs-postgresql-example.json │ │ │ ├── nodejs-postgresql-persistent.json │ │ │ └── react-web-app-example.json │ │ ├── perl │ │ └── imagestreams │ │ │ └── perl-rhel.json │ │ ├── php │ │ └── imagestreams │ │ │ └── php-rhel.json │ │ ├── postgresql │ │ ├── imagestreams │ │ │ └── postgresql-rhel.json │ │ └── templates │ │ │ ├── postgresql-ephemeral.json │ │ │ └── postgresql-persistent.json │ │ ├── python │ │ └── imagestreams │ │ │ └── python-rhel.json │ │ ├── rails │ │ └── templates │ │ │ ├── rails-pgsql-persistent.json │ │ │ └── rails-postgresql-example.json │ │ ├── redis │ │ ├── imagestreams │ │ │ └── redis-rhel.json │ │ └── templates │ │ │ ├── redis-ephemeral.json │ │ │ └── redis-persistent.json │ │ ├── ruby │ │ └── imagestreams │ │ │ └── ruby-rhel.json │ │ ├── semeru │ │ └── templates │ │ │ └── openjdk-to-semeru-transition.json │ │ ├── sso │ │ ├── imagestreams │ │ │ ├── postgresql13-for-sso75-openshift-rhel8.json │ │ │ ├── postgresql13-for-sso76-openshift-rhel8.json │ │ │ ├── sso75-openshift-rhel8.json │ │ │ └── sso76-openshift-rhel8.json │ │ └── templates │ │ │ ├── sso75-https.json │ │ │ ├── sso75-ocp4-x509-https.json │ │ │ ├── sso75-ocp4-x509-postgresql-persistent.json │ │ │ ├── sso75-postgresql-persistent.json │ │ │ ├── sso75-postgresql.json │ │ │ ├── sso76-ocp4-https.json │ │ │ ├── sso76-ocp4-postgresql-persistent.json │ │ │ ├── sso76-ocp4-postgresql.json │ │ │ ├── sso76-ocp4-x509-https.json │ │ │ └── sso76-ocp4-x509-postgresql-persistent.json │ │ └── webserver │ │ ├── imagestreams │ │ └── jboss-webserver57-openjdk11-tomcat9-openshift-ubi8.json │ │ └── templates │ │ ├── jws57-openjdk11-tomcat9-ubi8-basic-s2i.json │ │ └── jws57-openjdk11-tomcat9-ubi8-https-s2i.json ├── s390x │ └── official │ │ ├── cakephp │ │ └── templates │ │ │ ├── cakephp-mysql-example.json │ │ │ └── cakephp-mysql-persistent.json │ │ ├── dancer │ │ └── templates │ │ │ ├── dancer-mysql-example.json │ │ │ └── dancer-mysql-persistent.json │ │ ├── django │ │ └── templates │ │ │ ├── django-psql-example.json │ │ │ └── django-psql-persistent.json │ │ ├── dotnet │ │ └── imagestreams │ │ │ ├── dotnet-aspnet-rhel.json │ │ │ ├── dotnet-rhel.json │ │ │ └── dotnet-runtime-rhel.json │ │ ├── eap │ │ ├── imagestreams │ │ │ ├── jboss-eap-xp3-openjdk11-openshift-rhel8.json │ │ │ ├── jboss-eap-xp3-openjdk11-runtime-openshift-rhel8.json │ │ │ ├── jboss-eap-xp4-openjdk11-openshift-rhel8.json │ │ │ ├── jboss-eap-xp4-openjdk11-runtime-openshift-rhel8.json │ │ │ ├── jboss-eap74-openjdk11-openshift-rhel8.json │ │ │ └── jboss-eap74-openjdk11-runtime-openshift-rhel8.json │ │ └── templates │ │ │ ├── eap-xp3-basic-s2i.json │ │ │ ├── eap-xp4-basic-s2i.json │ │ │ ├── eap74-basic-s2i.json │ │ │ ├── eap74-https-s2i.json │ │ │ └── eap74-sso-s2i.json │ │ ├── golang │ │ └── imagestreams │ │ │ └── golang-rhel.json │ │ ├── httpd │ │ ├── imagestreams │ │ │ └── httpd-rhel.json │ │ └── templates │ │ │ └── httpd-example.json │ │ ├── java │ │ ├── imagestreams │ │ │ ├── java-rhel-s390x.json │ │ │ ├── java-runtime-ubi.json │ │ │ ├── openjdk-11-rhel7-rhel-s390x.json │ │ │ ├── redhat-openjdk18-openshift-rhel-s390x.json │ │ │ ├── ubi8-openjdk-11-rhel-s390x.json │ │ │ ├── ubi8-openjdk-11-runtime-ubi.json │ │ │ ├── ubi8-openjdk-17-rhel-s390x.json │ │ │ ├── ubi8-openjdk-17-runtime-ubi.json │ │ │ ├── ubi8-openjdk-21-rhel-s390x.json │ │ │ ├── ubi8-openjdk-21-runtime-ubi.json │ │ │ ├── ubi8-openjdk-8-rhel-s390x.json │ │ │ └── ubi8-openjdk-8-runtime-ubi.json │ │ └── templates │ │ │ └── openjdk-web-basic-s2i.json │ │ ├── jenkins │ │ ├── imagestreams │ │ │ ├── jenkins-agent-base-rhel.json │ │ │ └── jenkins-rhel.json │ │ └── templates │ │ │ ├── jenkins-ephemeral-monitored.json │ │ │ ├── jenkins-ephemeral.json │ │ │ ├── jenkins-persistent-monitored.json │ │ │ └── jenkins-persistent.json │ │ ├── mariadb │ │ ├── imagestreams │ │ │ └── mariadb-rhel.json │ │ └── templates │ │ │ ├── mariadb-ephemeral.json │ │ │ └── mariadb-persistent.json │ │ ├── mysql │ │ ├── imagestreams │ │ │ └── mysql-rhel.json │ │ └── templates │ │ │ ├── mysql-ephemeral.json │ │ │ └── mysql-persistent.json │ │ ├── nginx │ │ ├── imagestreams │ │ │ └── nginx-rhel.json │ │ └── templates │ │ │ └── nginx-example.json │ │ ├── nodejs │ │ ├── imagestreams │ │ │ └── nodejs-rhel.json │ │ └── templates │ │ │ ├── nodejs-postgresql-example.json │ │ │ ├── nodejs-postgresql-persistent.json │ │ │ └── react-web-app-example.json │ │ ├── perl │ │ └── imagestreams │ │ │ └── perl-rhel.json │ │ ├── php │ │ └── imagestreams │ │ │ └── php-rhel.json │ │ ├── postgresql │ │ ├── imagestreams │ │ │ └── postgresql-rhel.json │ │ └── templates │ │ │ ├── postgresql-ephemeral.json │ │ │ └── postgresql-persistent.json │ │ ├── python │ │ └── imagestreams │ │ │ └── python-rhel.json │ │ ├── rails │ │ └── templates │ │ │ ├── rails-pgsql-persistent.json │ │ │ └── rails-postgresql-example.json │ │ ├── redis │ │ ├── imagestreams │ │ │ └── redis-rhel.json │ │ └── templates │ │ │ ├── redis-ephemeral.json │ │ │ └── redis-persistent.json │ │ ├── ruby │ │ └── imagestreams │ │ │ └── ruby-rhel.json │ │ ├── semeru │ │ └── templates │ │ │ └── openjdk-to-semeru-transition.json │ │ ├── sso │ │ ├── imagestreams │ │ │ ├── postgresql13-for-sso75-openshift-rhel8.json │ │ │ ├── postgresql13-for-sso76-openshift-rhel8.json │ │ │ ├── sso75-openshift-rhel8.json │ │ │ └── sso76-openshift-rhel8.json │ │ └── templates │ │ │ ├── sso75-https.json │ │ │ ├── sso75-ocp4-x509-https.json │ │ │ ├── sso75-ocp4-x509-postgresql-persistent.json │ │ │ ├── sso75-postgresql-persistent.json │ │ │ ├── sso75-postgresql.json │ │ │ ├── sso76-ocp4-https.json │ │ │ ├── sso76-ocp4-postgresql-persistent.json │ │ │ ├── sso76-ocp4-postgresql.json │ │ │ ├── sso76-ocp4-x509-https.json │ │ │ └── sso76-ocp4-x509-postgresql-persistent.json │ │ └── webserver │ │ ├── imagestreams │ │ └── jboss-webserver57-openjdk11-tomcat9-openshift-ubi8.json │ │ └── templates │ │ ├── jws57-openjdk11-tomcat9-ubi8-basic-s2i.json │ │ └── jws57-openjdk11-tomcat9-ubi8-https-s2i.json └── x86_64 │ ├── community │ ├── dotnet │ │ └── imagestreams │ │ │ ├── dotnet-aspnet.json │ │ │ ├── dotnet-runtime.json │ │ │ └── dotnet.json │ ├── golang │ │ └── imagestreams │ │ │ └── golang-centos.json │ ├── httpd │ │ └── imagestreams │ │ │ └── httpd-centos.json │ ├── java │ │ ├── imagestreams │ │ │ └── java-ubi.json │ │ └── templates │ │ │ └── openjdk-web-basic-s2i.json │ ├── jenkins │ │ └── imagestreams │ │ │ ├── jenkins-agent-base-ubi.json │ │ │ └── jenkins-ubi.json │ ├── mariadb │ │ └── imagestreams │ │ │ └── mariadb-centos.json │ ├── mysql │ │ └── imagestreams │ │ │ └── mysql-centos.json │ ├── nginx │ │ └── imagestreams │ │ │ └── nginx-centos.json │ ├── nodejs │ │ └── imagestreams │ │ │ └── nodejs-centos.json │ ├── openliberty │ │ └── imagestreams │ │ │ └── openliberty.json │ ├── perl │ │ └── imagestreams │ │ │ └── perl-centos.json │ ├── php │ │ └── imagestreams │ │ │ └── php-centos.json │ ├── postgresql │ │ └── imagestreams │ │ │ └── postgresql-centos.json │ ├── python │ │ └── imagestreams │ │ │ └── python-centos.json │ ├── redis │ │ └── imagestreams │ │ │ └── redis-centos.json │ ├── ruby │ │ └── imagestreams │ │ │ └── ruby-centos.json │ └── wildfly │ │ └── imagestreams │ │ ├── wildfly-runtime-ubi.json │ │ └── wildfly-s2i-ubi.json │ └── official │ ├── 3scale │ ├── imagestreams │ │ └── apicast-gateway.json │ └── templates │ │ └── 3scale-gateway.json │ ├── amq │ ├── imagestreams │ │ └── jboss-amq-63-rhel7.json │ └── templates │ │ ├── amq63-basic.json │ │ └── amq63-ssl.json │ ├── cakephp │ └── templates │ │ ├── cakephp-mysql-example.json │ │ └── cakephp-mysql-persistent.json │ ├── dancer │ └── templates │ │ ├── dancer-mysql-example.json │ │ └── dancer-mysql-persistent.json │ ├── datagrid │ ├── imagestreams │ │ └── jboss-datagrid73-openshift-rhel7.json │ └── templates │ │ ├── cache-service.json │ │ └── datagrid-service.json │ ├── django │ └── templates │ │ ├── django-psql-example.json │ │ └── django-psql-persistent.json │ ├── dotnet │ └── imagestreams │ │ ├── dotnet-aspnet-rhel.json │ │ ├── dotnet-rhel.json │ │ └── dotnet-runtime-rhel.json │ ├── eap │ ├── imagestreams │ │ ├── jboss-eap-xp3-openjdk11-openshift-rhel8.json │ │ ├── jboss-eap-xp3-openjdk11-runtime-openshift-rhel8.json │ │ ├── jboss-eap-xp4-openjdk11-openshift-rhel8.json │ │ ├── jboss-eap-xp4-openjdk11-runtime-openshift-rhel8.json │ │ ├── jboss-eap74-openjdk11-openshift-rhel8.json │ │ ├── jboss-eap74-openjdk11-runtime-openshift-rhel8.json │ │ ├── jboss-eap74-openjdk8-openshift-rhel7.json │ │ └── jboss-eap74-openjdk8-runtime-openshift-rhel7.json │ └── templates │ │ ├── eap-xp3-basic-s2i.json │ │ ├── eap-xp4-basic-s2i.json │ │ ├── eap74-basic-s2i.json │ │ ├── eap74-https-s2i.json │ │ └── eap74-sso-s2i.json │ ├── fis │ ├── imagestreams │ │ ├── apicurito-ui-rhel7.json │ │ ├── fis-java-openshift-rhel7.json │ │ ├── fis-karaf-openshift-rhel7.json │ │ ├── fuse-apicurito-generator-rhel7.json │ │ ├── fuse7-console-rhel7.json │ │ ├── fuse7-eap-openshift-java11-rhel7.json │ │ ├── fuse7-eap-openshift-java17-rhel7.json │ │ ├── fuse7-eap-openshift-rhel7.json │ │ ├── fuse7-java-openshift-rhel7.json │ │ ├── fuse7-java11-openshift-rhel7.json │ │ ├── fuse7-java17-openshift-rhel7.json │ │ ├── fuse7-karaf-openshift-jdk11-rhel7.json │ │ ├── fuse7-karaf-openshift-jdk17-rhel7.json │ │ └── fuse7-karaf-openshift-rhel7.json │ └── templates │ │ ├── apicurito.json │ │ ├── fuse713-console.json │ │ ├── s2i-fuse713-spring-boot-2-camel-rest-3scale.json │ │ ├── s2i-fuse713-spring-boot-2-camel-xml.json │ │ └── s2i-fuse713-spring-boot-2-camel.json │ ├── golang │ └── imagestreams │ │ └── golang-rhel.json │ ├── httpd │ ├── imagestreams │ │ └── httpd-rhel.json │ └── templates │ │ └── httpd-example.json │ ├── java │ ├── imagestreams │ │ ├── java-rhel-x86_64.json │ │ ├── java-runtime-ubi.json │ │ ├── openjdk-11-rhel7-rhel-x86_64.json │ │ ├── redhat-openjdk18-openshift-rhel-x86_64.json │ │ ├── ubi8-openjdk-11-rhel-x86_64.json │ │ ├── ubi8-openjdk-11-runtime-ubi.json │ │ ├── ubi8-openjdk-17-rhel-x86_64.json │ │ ├── ubi8-openjdk-17-runtime-ubi.json │ │ ├── ubi8-openjdk-21-rhel-x86_64.json │ │ ├── ubi8-openjdk-21-runtime-ubi.json │ │ ├── ubi8-openjdk-8-rhel-x86_64.json │ │ └── ubi8-openjdk-8-runtime-ubi.json │ └── templates │ │ └── openjdk-web-basic-s2i.json │ ├── jenkins │ ├── imagestreams │ │ ├── jenkins-agent-base-rhel.json │ │ └── jenkins-rhel.json │ └── templates │ │ ├── jenkins-ephemeral-monitored.json │ │ ├── jenkins-ephemeral.json │ │ ├── jenkins-persistent-monitored.json │ │ └── jenkins-persistent.json │ ├── mariadb │ ├── imagestreams │ │ └── mariadb-rhel.json │ └── templates │ │ ├── mariadb-ephemeral.json │ │ └── mariadb-persistent.json │ ├── mysql │ ├── imagestreams │ │ └── mysql-rhel.json │ └── templates │ │ ├── mysql-ephemeral.json │ │ └── mysql-persistent.json │ ├── nginx │ ├── imagestreams │ │ └── nginx-rhel.json │ └── templates │ │ └── nginx-example.json │ ├── nodejs │ ├── imagestreams │ │ └── nodejs-rhel.json │ └── templates │ │ ├── nodejs-postgresql-example.json │ │ ├── nodejs-postgresql-persistent.json │ │ └── react-web-app-example.json │ ├── perl │ └── imagestreams │ │ └── perl-rhel.json │ ├── php │ └── imagestreams │ │ └── php-rhel.json │ ├── postgresql │ ├── imagestreams │ │ └── postgresql-rhel.json │ └── templates │ │ ├── postgresql-ephemeral.json │ │ └── postgresql-persistent.json │ ├── python │ └── imagestreams │ │ └── python-rhel.json │ ├── rails │ └── templates │ │ ├── rails-pgsql-persistent.json │ │ └── rails-postgresql-example.json │ ├── redis │ ├── imagestreams │ │ └── redis-rhel.json │ └── templates │ │ ├── redis-ephemeral.json │ │ └── redis-persistent.json │ ├── ruby │ └── imagestreams │ │ └── ruby-rhel.json │ ├── sso │ ├── imagestreams │ │ ├── postgresql13-for-sso75-openshift-rhel8.json │ │ ├── postgresql13-for-sso76-openshift-rhel8.json │ │ ├── sso75-openshift-rhel8.json │ │ └── sso76-openshift-rhel8.json │ └── templates │ │ ├── sso75-https.json │ │ ├── sso75-ocp4-x509-https.json │ │ ├── sso75-ocp4-x509-postgresql-persistent.json │ │ ├── sso75-postgresql-persistent.json │ │ ├── sso75-postgresql.json │ │ ├── sso76-ocp4-https.json │ │ ├── sso76-ocp4-postgresql-persistent.json │ │ ├── sso76-ocp4-postgresql.json │ │ ├── sso76-ocp4-x509-https.json │ │ └── sso76-ocp4-x509-postgresql-persistent.json │ └── webserver │ ├── imagestreams │ ├── jboss-webserver57-openjdk11-tomcat9-openshift-ubi8.json │ └── jboss-webserver57-openjdk8-tomcat9-openshift-ubi8.json │ └── templates │ ├── jws57-openjdk11-tomcat9-ubi8-basic-s2i.json │ ├── jws57-openjdk11-tomcat9-ubi8-https-s2i.json │ ├── jws57-openjdk8-tomcat9-ubi8-basic-s2i.json │ └── jws57-openjdk8-tomcat9-ubi8-https-s2i.json ├── cmd ├── common.go ├── import.go └── root.go ├── community.yaml ├── community ├── dotnet │ └── imagestreams │ │ ├── dotnet-aspnet.json │ │ ├── dotnet-runtime.json │ │ └── dotnet.json ├── golang │ └── imagestreams │ │ └── golang-centos.json ├── httpd │ └── imagestreams │ │ └── httpd-centos.json ├── java │ ├── imagestreams │ │ └── java-ubi.json │ └── templates │ │ └── openjdk-web-basic-s2i.json ├── jenkins │ └── imagestreams │ │ ├── jenkins-agent-base-ubi.json │ │ └── jenkins-ubi.json ├── mariadb │ └── imagestreams │ │ └── mariadb-centos.json ├── mysql │ └── imagestreams │ │ └── mysql-centos.json ├── nginx │ └── imagestreams │ │ └── nginx-centos.json ├── nodejs │ └── imagestreams │ │ └── nodejs-centos.json ├── openliberty │ └── imagestreams │ │ └── openliberty.json ├── perl │ └── imagestreams │ │ └── perl-centos.json ├── php │ └── imagestreams │ │ └── php-centos.json ├── postgresql │ └── imagestreams │ │ └── postgresql-centos.json ├── python │ └── imagestreams │ │ └── python-centos.json ├── redis │ └── imagestreams │ │ └── redis-centos.json ├── ruby │ └── imagestreams │ │ └── ruby-centos.json └── wildfly │ └── imagestreams │ ├── wildfly-runtime-ubi.json │ └── wildfly-s2i-ubi.json ├── configs ├── cluster-samples-operator-periodic.yaml └── verify-cluster-samples-operator-periodic.yaml ├── go.mod ├── go.sum ├── hack ├── verify-gofmt.sh ├── verify-periodic-old.sh ├── verify-periodic.sh └── verify-pullrequest.sh ├── main.go ├── official.yaml ├── official ├── 3scale │ ├── imagestreams │ │ └── apicast-gateway.json │ └── templates │ │ └── 3scale-gateway.json ├── amq │ ├── imagestreams │ │ └── jboss-amq-63-rhel7.json │ └── templates │ │ ├── amq63-basic.json │ │ ├── amq63-persistent-ssl.json │ │ ├── amq63-persistent.json │ │ └── amq63-ssl.json ├── cakephp │ └── templates │ │ ├── cakephp-example.json │ │ ├── cakephp-mysql-example.json │ │ └── cakephp-mysql-persistent.json ├── dancer │ └── templates │ │ ├── dancer-example.json │ │ ├── dancer-mysql-example.json │ │ └── dancer-mysql-persistent.json ├── datagrid │ ├── imagestreams │ │ └── jboss-datagrid73-openshift-rhel7.json │ └── templates │ │ ├── cache-service.json │ │ └── datagrid-service.json ├── django │ └── templates │ │ ├── django-example.json │ │ ├── django-psql-example.json │ │ └── django-psql-persistent.json ├── dotnet │ └── imagestreams │ │ ├── dotnet-aspnet-rhel.json │ │ ├── dotnet-rhel.json │ │ └── dotnet-runtime-rhel.json ├── eap │ ├── imagestreams │ │ ├── jboss-eap-xp3-openjdk11-openshift-rhel8.json │ │ ├── jboss-eap-xp3-openjdk11-runtime-openshift-rhel8.json │ │ ├── jboss-eap-xp4-openjdk11-openshift-rhel8.json │ │ ├── jboss-eap-xp4-openjdk11-runtime-openshift-rhel8.json │ │ ├── jboss-eap74-openjdk11-openshift-rhel8.json │ │ ├── jboss-eap74-openjdk11-runtime-openshift-rhel8.json │ │ ├── jboss-eap74-openjdk8-openshift-rhel7.json │ │ └── jboss-eap74-openjdk8-runtime-openshift-rhel7.json │ └── templates │ │ ├── eap-xp3-basic-s2i.json │ │ ├── eap-xp4-basic-s2i.json │ │ ├── eap74-basic-s2i.json │ │ ├── eap74-https-s2i.json │ │ └── eap74-sso-s2i.json ├── fis │ ├── imagestreams │ │ ├── apicurito-ui-rhel7.json │ │ ├── fis-java-openshift-rhel7.json │ │ ├── fis-karaf-openshift-rhel7.json │ │ ├── fuse-apicurito-generator-rhel7.json │ │ ├── fuse7-console-rhel7.json │ │ ├── fuse7-eap-openshift-java11-rhel7.json │ │ ├── fuse7-eap-openshift-java17-rhel7.json │ │ ├── fuse7-eap-openshift-rhel7.json │ │ ├── fuse7-java-openshift-rhel7.json │ │ ├── fuse7-java11-openshift-rhel7.json │ │ ├── fuse7-java17-openshift-rhel7.json │ │ ├── fuse7-karaf-openshift-jdk11-rhel7.json │ │ ├── fuse7-karaf-openshift-jdk17-rhel7.json │ │ └── fuse7-karaf-openshift-rhel7.json │ └── templates │ │ ├── apicurito.json │ │ ├── fuse713-console.json │ │ ├── s2i-fuse713-spring-boot-2-camel-rest-3scale.json │ │ ├── s2i-fuse713-spring-boot-2-camel-xml.json │ │ └── s2i-fuse713-spring-boot-2-camel.json ├── golang │ └── imagestreams │ │ ├── golang-rhel-aarch64.json │ │ └── golang-rhel.json ├── httpd │ ├── imagestreams │ │ ├── httpd-rhel-aarch64.json │ │ └── httpd-rhel.json │ └── templates │ │ └── httpd-example.json ├── java │ ├── imagestreams │ │ ├── java-rhel-aarch64.json │ │ ├── java-rhel-ppc64le.json │ │ ├── java-rhel-s390x.json │ │ ├── java-rhel-x86_64.json │ │ ├── java-runtime-ubi.json │ │ ├── openjdk-11-rhel7-rhel-ppc64le.json │ │ ├── openjdk-11-rhel7-rhel-s390x.json │ │ ├── openjdk-11-rhel7-rhel-x86_64.json │ │ ├── redhat-openjdk18-openshift-rhel-ppc64le.json │ │ ├── redhat-openjdk18-openshift-rhel-s390x.json │ │ ├── redhat-openjdk18-openshift-rhel-x86_64.json │ │ ├── ubi8-openjdk-11-rhel-aarch64.json │ │ ├── ubi8-openjdk-11-rhel-ppc64le.json │ │ ├── ubi8-openjdk-11-rhel-s390x.json │ │ ├── ubi8-openjdk-11-rhel-x86_64.json │ │ ├── ubi8-openjdk-11-runtime-ubi.json │ │ ├── ubi8-openjdk-17-rhel-aarch64.json │ │ ├── ubi8-openjdk-17-rhel-ppc64le.json │ │ ├── ubi8-openjdk-17-rhel-s390x.json │ │ ├── ubi8-openjdk-17-rhel-x86_64.json │ │ ├── ubi8-openjdk-17-runtime-ubi.json │ │ ├── ubi8-openjdk-21-rhel-aarch64.json │ │ ├── ubi8-openjdk-21-rhel-ppc64le.json │ │ ├── ubi8-openjdk-21-rhel-s390x.json │ │ ├── ubi8-openjdk-21-rhel-x86_64.json │ │ ├── ubi8-openjdk-21-runtime-ubi.json │ │ ├── ubi8-openjdk-8-rhel-aarch64.json │ │ ├── ubi8-openjdk-8-rhel-ppc64le.json │ │ ├── ubi8-openjdk-8-rhel-s390x.json │ │ ├── ubi8-openjdk-8-rhel-x86_64.json │ │ └── ubi8-openjdk-8-runtime-ubi.json │ └── templates │ │ └── openjdk-web-basic-s2i.json ├── jenkins │ ├── imagestreams │ │ ├── jenkins-agent-base-rhel.json │ │ └── jenkins-rhel.json │ └── templates │ │ ├── jenkins-ephemeral-monitored.json │ │ ├── jenkins-ephemeral.json │ │ ├── jenkins-persistent-monitored.json │ │ └── jenkins-persistent.json ├── mariadb │ ├── imagestreams │ │ ├── mariadb-rhel-aarch64.json │ │ └── mariadb-rhel.json │ └── templates │ │ ├── mariadb-ephemeral.json │ │ └── mariadb-persistent.json ├── mysql │ ├── imagestreams │ │ ├── mysql-rhel-aarch64.json │ │ └── mysql-rhel.json │ └── templates │ │ ├── mysql-ephemeral.json │ │ └── mysql-persistent.json ├── nginx │ ├── imagestreams │ │ ├── nginx-rhel-aarch64.json │ │ └── nginx-rhel.json │ └── templates │ │ └── nginx-example.json ├── nodejs │ ├── imagestreams │ │ ├── nodejs-rhel-aarch64.json │ │ └── nodejs-rhel.json │ └── templates │ │ ├── nodejs-example.json │ │ ├── nodejs-postgresql-example.json │ │ ├── nodejs-postgresql-persistent.json │ │ └── react-web-app-example.json ├── perl │ └── imagestreams │ │ ├── perl-rhel-aarch64.json │ │ └── perl-rhel.json ├── php │ └── imagestreams │ │ ├── php-rhel-aarch64.json │ │ └── php-rhel.json ├── postgresql │ ├── imagestreams │ │ ├── postgresql-rhel-aarch64.json │ │ └── postgresql-rhel.json │ └── templates │ │ ├── postgresql-ephemeral.json │ │ └── postgresql-persistent.json ├── python │ └── imagestreams │ │ ├── python-rhel-aarch64.json │ │ └── python-rhel.json ├── rails │ └── templates │ │ ├── rails-pgsql-persistent.json │ │ └── rails-postgresql-example.json ├── redis │ ├── imagestreams │ │ ├── redis-rhel-aarch64.json │ │ └── redis-rhel.json │ └── templates │ │ ├── redis-ephemeral.json │ │ └── redis-persistent.json ├── ruby │ └── imagestreams │ │ ├── ruby-rhel-aarch64.json │ │ └── ruby-rhel.json ├── semeru │ └── templates │ │ └── openjdk-to-semeru-transition.json ├── sso │ ├── imagestreams │ │ ├── postgresql13-for-sso75-openshift-rhel8.json │ │ ├── postgresql13-for-sso76-openshift-rhel8.json │ │ ├── sso75-openshift-rhel8.json │ │ └── sso76-openshift-rhel8.json │ └── templates │ │ ├── sso75-https.json │ │ ├── sso75-ocp4-x509-https.json │ │ ├── sso75-ocp4-x509-postgresql-persistent.json │ │ ├── sso75-postgresql-persistent.json │ │ ├── sso75-postgresql.json │ │ ├── sso76-ocp4-https.json │ │ ├── sso76-ocp4-postgresql-persistent.json │ │ ├── sso76-ocp4-postgresql.json │ │ ├── sso76-ocp4-x509-https.json │ │ └── sso76-ocp4-x509-postgresql-persistent.json └── webserver │ ├── imagestreams │ ├── jboss-webserver57-openjdk11-tomcat9-openshift-ubi8.json │ └── jboss-webserver57-openjdk8-tomcat9-openshift-ubi8.json │ └── templates │ ├── jws57-openjdk11-tomcat9-ubi8-basic-s2i.json │ ├── jws57-openjdk11-tomcat9-ubi8-https-s2i.json │ ├── jws57-openjdk8-tomcat9-ubi8-basic-s2i.json │ └── jws57-openjdk8-tomcat9-ubi8-https-s2i.json ├── online └── professional │ └── x86_64 │ ├── community │ ├── java │ │ └── templates │ │ │ └── openjdk-web-basic-s2i.json │ ├── openliberty │ │ └── imagestreams │ │ │ └── openliberty.json │ └── wildfly │ │ └── imagestreams │ │ ├── wildfly-runtime-ubi.json │ │ └── wildfly-s2i-ubi.json │ └── official │ ├── 3scale │ ├── imagestreams │ │ └── apicast-gateway.json │ └── templates │ │ └── 3scale-gateway.json │ ├── amq │ ├── imagestreams │ │ └── jboss-amq-63-rhel7.json │ └── templates │ │ ├── amq63-basic.json │ │ └── amq63-ssl.json │ ├── cakephp │ └── templates │ │ └── cakephp-mysql-persistent.json │ ├── dancer │ └── templates │ │ └── dancer-mysql-persistent.json │ ├── datagrid │ ├── imagestreams │ │ └── jboss-datagrid73-openshift-rhel7.json │ └── templates │ │ ├── cache-service.json │ │ └── datagrid-service.json │ ├── django │ └── templates │ │ └── django-psql-persistent.json │ ├── dotnet │ └── imagestreams │ │ ├── dotnet-aspnet-rhel.json │ │ ├── dotnet-rhel.json │ │ └── dotnet-runtime-rhel.json │ ├── fis │ ├── imagestreams │ │ ├── apicurito-ui-rhel7.json │ │ ├── fis-java-openshift-rhel7.json │ │ ├── fis-karaf-openshift-rhel7.json │ │ ├── fuse-apicurito-generator-rhel7.json │ │ ├── fuse7-console-rhel7.json │ │ ├── fuse7-eap-openshift-java11-rhel7.json │ │ ├── fuse7-eap-openshift-java17-rhel7.json │ │ ├── fuse7-eap-openshift-rhel7.json │ │ ├── fuse7-java-openshift-rhel7.json │ │ ├── fuse7-java11-openshift-rhel7.json │ │ ├── fuse7-java17-openshift-rhel7.json │ │ ├── fuse7-karaf-openshift-jdk11-rhel7.json │ │ ├── fuse7-karaf-openshift-jdk17-rhel7.json │ │ └── fuse7-karaf-openshift-rhel7.json │ └── templates │ │ ├── apicurito.json │ │ ├── fuse713-console.json │ │ ├── s2i-fuse713-spring-boot-2-camel-rest-3scale.json │ │ ├── s2i-fuse713-spring-boot-2-camel-xml.json │ │ └── s2i-fuse713-spring-boot-2-camel.json │ ├── golang │ └── imagestreams │ │ └── golang-rhel.json │ ├── httpd │ ├── imagestreams │ │ └── httpd-rhel.json │ └── templates │ │ └── httpd-example.json │ ├── java │ ├── imagestreams │ │ ├── java-rhel-x86_64.json │ │ ├── openjdk-11-rhel7-rhel-x86_64.json │ │ ├── redhat-openjdk18-openshift-rhel-x86_64.json │ │ ├── ubi8-openjdk-11-rhel-x86_64.json │ │ ├── ubi8-openjdk-17-rhel-x86_64.json │ │ ├── ubi8-openjdk-21-rhel-x86_64.json │ │ └── ubi8-openjdk-8-rhel-x86_64.json │ └── templates │ │ └── openjdk-web-basic-s2i.json │ ├── jenkins │ ├── imagestreams │ │ ├── jenkins-agent-base-rhel.json │ │ └── jenkins-rhel.json │ └── templates │ │ ├── jenkins-persistent-monitored.json │ │ └── jenkins-persistent.json │ ├── mariadb │ ├── imagestreams │ │ └── mariadb-rhel.json │ └── templates │ │ └── mariadb-persistent.json │ ├── mysql │ ├── imagestreams │ │ └── mysql-rhel.json │ └── templates │ │ └── mysql-persistent.json │ ├── nginx │ ├── imagestreams │ │ └── nginx-rhel.json │ └── templates │ │ └── nginx-example.json │ ├── nodejs │ ├── imagestreams │ │ └── nodejs-rhel.json │ └── templates │ │ └── nodejs-postgresql-persistent.json │ ├── perl │ └── imagestreams │ │ └── perl-rhel.json │ ├── php │ └── imagestreams │ │ └── php-rhel.json │ ├── postgresql │ ├── imagestreams │ │ └── postgresql-rhel.json │ └── templates │ │ └── postgresql-persistent.json │ ├── python │ └── imagestreams │ │ └── python-rhel.json │ ├── rails │ └── templates │ │ └── rails-pgsql-persistent.json │ ├── redis │ ├── imagestreams │ │ └── redis-rhel.json │ └── templates │ │ ├── redis-ephemeral.json │ │ └── redis-persistent.json │ ├── ruby │ └── imagestreams │ │ └── ruby-rhel.json │ └── webserver │ ├── imagestreams │ ├── jboss-webserver57-openjdk11-tomcat9-openshift-ubi8.json │ └── jboss-webserver57-openjdk8-tomcat9-openshift-ubi8.json │ └── templates │ ├── jws57-openjdk11-tomcat9-ubi8-https-s2i.json │ └── jws57-openjdk8-tomcat9-ubi8-https-s2i.json ├── operator ├── ocp-aarch64 │ └── official │ │ ├── cakephp │ │ └── templates │ │ │ ├── cakephp-mysql-example.json │ │ │ └── cakephp-mysql-persistent.json │ │ ├── dancer │ │ └── templates │ │ │ ├── dancer-mysql-example.json │ │ │ └── dancer-mysql-persistent.json │ │ ├── django │ │ └── templates │ │ │ ├── django-psql-example.json │ │ │ └── django-psql-persistent.json │ │ ├── dotnet │ │ └── imagestreams │ │ │ ├── dotnet-aspnet-rhel.json │ │ │ ├── dotnet-rhel.json │ │ │ └── dotnet-runtime-rhel.json │ │ ├── golang │ │ └── imagestreams │ │ │ └── golang-rhel-aarch64.json │ │ ├── httpd │ │ ├── imagestreams │ │ │ └── httpd-rhel-aarch64.json │ │ └── templates │ │ │ └── httpd-example.json │ │ ├── java │ │ ├── imagestreams │ │ │ ├── java-rhel-aarch64.json │ │ │ ├── java-runtime-ubi.json │ │ │ ├── ubi8-openjdk-11-rhel-aarch64.json │ │ │ ├── ubi8-openjdk-11-runtime-ubi.json │ │ │ ├── ubi8-openjdk-17-rhel-aarch64.json │ │ │ ├── ubi8-openjdk-17-runtime-ubi.json │ │ │ ├── ubi8-openjdk-21-rhel-aarch64.json │ │ │ ├── ubi8-openjdk-21-runtime-ubi.json │ │ │ ├── ubi8-openjdk-8-rhel-aarch64.json │ │ │ └── ubi8-openjdk-8-runtime-ubi.json │ │ └── templates │ │ │ └── openjdk-web-basic-s2i.json │ │ ├── jenkins │ │ ├── imagestreams │ │ │ ├── jenkins-agent-base-rhel.json │ │ │ └── jenkins-rhel.json │ │ └── templates │ │ │ ├── jenkins-ephemeral-monitored.json │ │ │ ├── jenkins-ephemeral.json │ │ │ ├── jenkins-persistent-monitored.json │ │ │ └── jenkins-persistent.json │ │ ├── mariadb │ │ ├── imagestreams │ │ │ └── mariadb-rhel-aarch64.json │ │ └── templates │ │ │ ├── mariadb-ephemeral.json │ │ │ └── mariadb-persistent.json │ │ ├── mysql │ │ ├── imagestreams │ │ │ └── mysql-rhel-aarch64.json │ │ └── templates │ │ │ ├── mysql-ephemeral.json │ │ │ └── mysql-persistent.json │ │ ├── nginx │ │ ├── imagestreams │ │ │ └── nginx-rhel-aarch64.json │ │ └── templates │ │ │ └── nginx-example.json │ │ ├── nodejs │ │ ├── imagestreams │ │ │ └── nodejs-rhel-aarch64.json │ │ └── templates │ │ │ ├── nodejs-postgresql-example.json │ │ │ ├── nodejs-postgresql-persistent.json │ │ │ └── react-web-app-example.json │ │ ├── perl │ │ └── imagestreams │ │ │ └── perl-rhel-aarch64.json │ │ ├── php │ │ └── imagestreams │ │ │ └── php-rhel-aarch64.json │ │ ├── postgresql │ │ ├── imagestreams │ │ │ └── postgresql-rhel-aarch64.json │ │ └── templates │ │ │ ├── postgresql-ephemeral.json │ │ │ └── postgresql-persistent.json │ │ ├── python │ │ └── imagestreams │ │ │ └── python-rhel-aarch64.json │ │ ├── rails │ │ └── templates │ │ │ ├── rails-pgsql-persistent.json │ │ │ └── rails-postgresql-example.json │ │ ├── redis │ │ ├── imagestreams │ │ │ └── redis-rhel-aarch64.json │ │ └── templates │ │ │ ├── redis-ephemeral.json │ │ │ └── redis-persistent.json │ │ └── ruby │ │ └── imagestreams │ │ └── ruby-rhel-aarch64.json ├── ocp-ppc64le │ └── official │ │ ├── cakephp │ │ └── templates │ │ │ ├── cakephp-mysql-example.json │ │ │ └── cakephp-mysql-persistent.json │ │ ├── dancer │ │ └── templates │ │ │ ├── dancer-mysql-example.json │ │ │ └── dancer-mysql-persistent.json │ │ ├── django │ │ └── templates │ │ │ ├── django-psql-example.json │ │ │ └── django-psql-persistent.json │ │ ├── dotnet │ │ └── imagestreams │ │ │ ├── dotnet-aspnet-rhel.json │ │ │ ├── dotnet-rhel.json │ │ │ └── dotnet-runtime-rhel.json │ │ ├── eap │ │ ├── imagestreams │ │ │ ├── jboss-eap-xp3-openjdk11-openshift-rhel8.json │ │ │ ├── jboss-eap-xp3-openjdk11-runtime-openshift-rhel8.json │ │ │ ├── jboss-eap-xp4-openjdk11-openshift-rhel8.json │ │ │ ├── jboss-eap-xp4-openjdk11-runtime-openshift-rhel8.json │ │ │ ├── jboss-eap74-openjdk11-openshift-rhel8.json │ │ │ └── jboss-eap74-openjdk11-runtime-openshift-rhel8.json │ │ └── templates │ │ │ ├── eap-xp3-basic-s2i.json │ │ │ ├── eap-xp4-basic-s2i.json │ │ │ ├── eap74-basic-s2i.json │ │ │ ├── eap74-https-s2i.json │ │ │ └── eap74-sso-s2i.json │ │ ├── golang │ │ └── imagestreams │ │ │ └── golang-rhel.json │ │ ├── httpd │ │ ├── imagestreams │ │ │ └── httpd-rhel.json │ │ └── templates │ │ │ └── httpd-example.json │ │ ├── java │ │ ├── imagestreams │ │ │ ├── java-rhel-ppc64le.json │ │ │ ├── java-runtime-ubi.json │ │ │ ├── openjdk-11-rhel7-rhel-ppc64le.json │ │ │ ├── redhat-openjdk18-openshift-rhel-ppc64le.json │ │ │ ├── ubi8-openjdk-11-rhel-ppc64le.json │ │ │ ├── ubi8-openjdk-11-runtime-ubi.json │ │ │ ├── ubi8-openjdk-17-rhel-ppc64le.json │ │ │ ├── ubi8-openjdk-17-runtime-ubi.json │ │ │ ├── ubi8-openjdk-21-rhel-ppc64le.json │ │ │ ├── ubi8-openjdk-21-runtime-ubi.json │ │ │ ├── ubi8-openjdk-8-rhel-ppc64le.json │ │ │ └── ubi8-openjdk-8-runtime-ubi.json │ │ └── templates │ │ │ └── openjdk-web-basic-s2i.json │ │ ├── jenkins │ │ ├── imagestreams │ │ │ ├── jenkins-agent-base-rhel.json │ │ │ └── jenkins-rhel.json │ │ └── templates │ │ │ ├── jenkins-ephemeral-monitored.json │ │ │ ├── jenkins-ephemeral.json │ │ │ ├── jenkins-persistent-monitored.json │ │ │ └── jenkins-persistent.json │ │ ├── mariadb │ │ ├── imagestreams │ │ │ └── mariadb-rhel.json │ │ └── templates │ │ │ ├── mariadb-ephemeral.json │ │ │ └── mariadb-persistent.json │ │ ├── mysql │ │ ├── imagestreams │ │ │ └── mysql-rhel.json │ │ └── templates │ │ │ ├── mysql-ephemeral.json │ │ │ └── mysql-persistent.json │ │ ├── nginx │ │ ├── imagestreams │ │ │ └── nginx-rhel.json │ │ └── templates │ │ │ └── nginx-example.json │ │ ├── nodejs │ │ ├── imagestreams │ │ │ └── nodejs-rhel.json │ │ └── templates │ │ │ ├── nodejs-postgresql-example.json │ │ │ ├── nodejs-postgresql-persistent.json │ │ │ └── react-web-app-example.json │ │ ├── perl │ │ └── imagestreams │ │ │ └── perl-rhel.json │ │ ├── php │ │ └── imagestreams │ │ │ └── php-rhel.json │ │ ├── postgresql │ │ ├── imagestreams │ │ │ └── postgresql-rhel.json │ │ └── templates │ │ │ ├── postgresql-ephemeral.json │ │ │ └── postgresql-persistent.json │ │ ├── python │ │ └── imagestreams │ │ │ └── python-rhel.json │ │ ├── rails │ │ └── templates │ │ │ ├── rails-pgsql-persistent.json │ │ │ └── rails-postgresql-example.json │ │ ├── redis │ │ ├── imagestreams │ │ │ └── redis-rhel.json │ │ └── templates │ │ │ ├── redis-ephemeral.json │ │ │ └── redis-persistent.json │ │ ├── ruby │ │ └── imagestreams │ │ │ └── ruby-rhel.json │ │ ├── semeru │ │ └── templates │ │ │ └── openjdk-to-semeru-transition.json │ │ ├── sso │ │ ├── imagestreams │ │ │ ├── postgresql13-for-sso75-openshift-rhel8.json │ │ │ ├── postgresql13-for-sso76-openshift-rhel8.json │ │ │ ├── sso75-openshift-rhel8.json │ │ │ └── sso76-openshift-rhel8.json │ │ └── templates │ │ │ ├── sso75-https.json │ │ │ ├── sso75-ocp4-x509-https.json │ │ │ ├── sso75-ocp4-x509-postgresql-persistent.json │ │ │ ├── sso75-postgresql-persistent.json │ │ │ ├── sso75-postgresql.json │ │ │ ├── sso76-ocp4-https.json │ │ │ ├── sso76-ocp4-postgresql-persistent.json │ │ │ ├── sso76-ocp4-postgresql.json │ │ │ ├── sso76-ocp4-x509-https.json │ │ │ └── sso76-ocp4-x509-postgresql-persistent.json │ │ └── webserver │ │ ├── imagestreams │ │ └── jboss-webserver57-openjdk11-tomcat9-openshift-ubi8.json │ │ └── templates │ │ ├── jws57-openjdk11-tomcat9-ubi8-basic-s2i.json │ │ └── jws57-openjdk11-tomcat9-ubi8-https-s2i.json ├── ocp-s390x │ └── official │ │ ├── cakephp │ │ └── templates │ │ │ ├── cakephp-mysql-example.json │ │ │ └── cakephp-mysql-persistent.json │ │ ├── dancer │ │ └── templates │ │ │ ├── dancer-mysql-example.json │ │ │ └── dancer-mysql-persistent.json │ │ ├── django │ │ └── templates │ │ │ ├── django-psql-example.json │ │ │ └── django-psql-persistent.json │ │ ├── dotnet │ │ └── imagestreams │ │ │ ├── dotnet-aspnet-rhel.json │ │ │ ├── dotnet-rhel.json │ │ │ └── dotnet-runtime-rhel.json │ │ ├── eap │ │ ├── imagestreams │ │ │ ├── jboss-eap-xp3-openjdk11-openshift-rhel8.json │ │ │ ├── jboss-eap-xp3-openjdk11-runtime-openshift-rhel8.json │ │ │ ├── jboss-eap-xp4-openjdk11-openshift-rhel8.json │ │ │ ├── jboss-eap-xp4-openjdk11-runtime-openshift-rhel8.json │ │ │ ├── jboss-eap74-openjdk11-openshift-rhel8.json │ │ │ └── jboss-eap74-openjdk11-runtime-openshift-rhel8.json │ │ └── templates │ │ │ ├── eap-xp3-basic-s2i.json │ │ │ ├── eap-xp4-basic-s2i.json │ │ │ ├── eap74-basic-s2i.json │ │ │ ├── eap74-https-s2i.json │ │ │ └── eap74-sso-s2i.json │ │ ├── golang │ │ └── imagestreams │ │ │ └── golang-rhel.json │ │ ├── httpd │ │ ├── imagestreams │ │ │ └── httpd-rhel.json │ │ └── templates │ │ │ └── httpd-example.json │ │ ├── java │ │ ├── imagestreams │ │ │ ├── java-rhel-s390x.json │ │ │ ├── java-runtime-ubi.json │ │ │ ├── openjdk-11-rhel7-rhel-s390x.json │ │ │ ├── redhat-openjdk18-openshift-rhel-s390x.json │ │ │ ├── ubi8-openjdk-11-rhel-s390x.json │ │ │ ├── ubi8-openjdk-11-runtime-ubi.json │ │ │ ├── ubi8-openjdk-17-rhel-s390x.json │ │ │ ├── ubi8-openjdk-17-runtime-ubi.json │ │ │ ├── ubi8-openjdk-21-rhel-s390x.json │ │ │ ├── ubi8-openjdk-21-runtime-ubi.json │ │ │ ├── ubi8-openjdk-8-rhel-s390x.json │ │ │ └── ubi8-openjdk-8-runtime-ubi.json │ │ └── templates │ │ │ └── openjdk-web-basic-s2i.json │ │ ├── jenkins │ │ ├── imagestreams │ │ │ ├── jenkins-agent-base-rhel.json │ │ │ └── jenkins-rhel.json │ │ └── templates │ │ │ ├── jenkins-ephemeral-monitored.json │ │ │ ├── jenkins-ephemeral.json │ │ │ ├── jenkins-persistent-monitored.json │ │ │ └── jenkins-persistent.json │ │ ├── mariadb │ │ ├── imagestreams │ │ │ └── mariadb-rhel.json │ │ └── templates │ │ │ ├── mariadb-ephemeral.json │ │ │ └── mariadb-persistent.json │ │ ├── mysql │ │ ├── imagestreams │ │ │ └── mysql-rhel.json │ │ └── templates │ │ │ ├── mysql-ephemeral.json │ │ │ └── mysql-persistent.json │ │ ├── nginx │ │ ├── imagestreams │ │ │ └── nginx-rhel.json │ │ └── templates │ │ │ └── nginx-example.json │ │ ├── nodejs │ │ ├── imagestreams │ │ │ └── nodejs-rhel.json │ │ └── templates │ │ │ ├── nodejs-postgresql-example.json │ │ │ ├── nodejs-postgresql-persistent.json │ │ │ └── react-web-app-example.json │ │ ├── perl │ │ └── imagestreams │ │ │ └── perl-rhel.json │ │ ├── php │ │ └── imagestreams │ │ │ └── php-rhel.json │ │ ├── postgresql │ │ ├── imagestreams │ │ │ └── postgresql-rhel.json │ │ └── templates │ │ │ ├── postgresql-ephemeral.json │ │ │ └── postgresql-persistent.json │ │ ├── python │ │ └── imagestreams │ │ │ └── python-rhel.json │ │ ├── rails │ │ └── templates │ │ │ ├── rails-pgsql-persistent.json │ │ │ └── rails-postgresql-example.json │ │ ├── redis │ │ ├── imagestreams │ │ │ └── redis-rhel.json │ │ └── templates │ │ │ ├── redis-ephemeral.json │ │ │ └── redis-persistent.json │ │ ├── ruby │ │ └── imagestreams │ │ │ └── ruby-rhel.json │ │ ├── semeru │ │ └── templates │ │ │ └── openjdk-to-semeru-transition.json │ │ ├── sso │ │ ├── imagestreams │ │ │ ├── postgresql13-for-sso75-openshift-rhel8.json │ │ │ ├── postgresql13-for-sso76-openshift-rhel8.json │ │ │ ├── sso75-openshift-rhel8.json │ │ │ └── sso76-openshift-rhel8.json │ │ └── templates │ │ │ ├── sso75-https.json │ │ │ ├── sso75-ocp4-x509-https.json │ │ │ ├── sso75-ocp4-x509-postgresql-persistent.json │ │ │ ├── sso75-postgresql-persistent.json │ │ │ ├── sso75-postgresql.json │ │ │ ├── sso76-ocp4-https.json │ │ │ ├── sso76-ocp4-postgresql-persistent.json │ │ │ ├── sso76-ocp4-postgresql.json │ │ │ ├── sso76-ocp4-x509-https.json │ │ │ └── sso76-ocp4-x509-postgresql-persistent.json │ │ └── webserver │ │ ├── imagestreams │ │ └── jboss-webserver57-openjdk11-tomcat9-openshift-ubi8.json │ │ └── templates │ │ ├── jws57-openjdk11-tomcat9-ubi8-basic-s2i.json │ │ └── jws57-openjdk11-tomcat9-ubi8-https-s2i.json ├── ocp-x86_64 │ └── official │ │ ├── cakephp │ │ └── templates │ │ │ ├── cakephp-mysql-example.json │ │ │ └── cakephp-mysql-persistent.json │ │ ├── dancer │ │ └── templates │ │ │ ├── dancer-mysql-example.json │ │ │ └── dancer-mysql-persistent.json │ │ ├── datagrid │ │ ├── imagestreams │ │ │ └── jboss-datagrid73-openshift-rhel7.json │ │ └── templates │ │ │ ├── cache-service.json │ │ │ └── datagrid-service.json │ │ ├── django │ │ └── templates │ │ │ ├── django-psql-example.json │ │ │ └── django-psql-persistent.json │ │ ├── dotnet │ │ └── imagestreams │ │ │ ├── dotnet-aspnet-rhel.json │ │ │ ├── dotnet-rhel.json │ │ │ └── dotnet-runtime-rhel.json │ │ ├── eap │ │ ├── imagestreams │ │ │ ├── jboss-eap-xp3-openjdk11-openshift-rhel8.json │ │ │ ├── jboss-eap-xp3-openjdk11-runtime-openshift-rhel8.json │ │ │ ├── jboss-eap-xp4-openjdk11-openshift-rhel8.json │ │ │ ├── jboss-eap-xp4-openjdk11-runtime-openshift-rhel8.json │ │ │ ├── jboss-eap74-openjdk11-openshift-rhel8.json │ │ │ ├── jboss-eap74-openjdk11-runtime-openshift-rhel8.json │ │ │ ├── jboss-eap74-openjdk8-openshift-rhel7.json │ │ │ └── jboss-eap74-openjdk8-runtime-openshift-rhel7.json │ │ └── templates │ │ │ ├── eap-xp3-basic-s2i.json │ │ │ ├── eap-xp4-basic-s2i.json │ │ │ ├── eap74-basic-s2i.json │ │ │ ├── eap74-https-s2i.json │ │ │ └── eap74-sso-s2i.json │ │ ├── fis │ │ ├── imagestreams │ │ │ ├── fuse7-eap-openshift-java11-rhel7.json │ │ │ ├── fuse7-eap-openshift-java17-rhel7.json │ │ │ ├── fuse7-eap-openshift-rhel7.json │ │ │ ├── fuse7-java-openshift-rhel7.json │ │ │ ├── fuse7-java11-openshift-rhel7.json │ │ │ ├── fuse7-java17-openshift-rhel7.json │ │ │ ├── fuse7-karaf-openshift-jdk11-rhel7.json │ │ │ ├── fuse7-karaf-openshift-jdk17-rhel7.json │ │ │ └── fuse7-karaf-openshift-rhel7.json │ │ └── templates │ │ │ ├── s2i-fuse713-spring-boot-2-camel-rest-3scale.json │ │ │ ├── s2i-fuse713-spring-boot-2-camel-xml.json │ │ │ └── s2i-fuse713-spring-boot-2-camel.json │ │ ├── golang │ │ └── imagestreams │ │ │ └── golang-rhel.json │ │ ├── httpd │ │ ├── imagestreams │ │ │ └── httpd-rhel.json │ │ └── templates │ │ │ └── httpd-example.json │ │ ├── java │ │ ├── imagestreams │ │ │ ├── java-rhel-x86_64.json │ │ │ ├── java-runtime-ubi.json │ │ │ ├── openjdk-11-rhel7-rhel-x86_64.json │ │ │ ├── redhat-openjdk18-openshift-rhel-x86_64.json │ │ │ ├── ubi8-openjdk-11-rhel-x86_64.json │ │ │ ├── ubi8-openjdk-11-runtime-ubi.json │ │ │ ├── ubi8-openjdk-17-rhel-x86_64.json │ │ │ ├── ubi8-openjdk-17-runtime-ubi.json │ │ │ ├── ubi8-openjdk-21-rhel-x86_64.json │ │ │ ├── ubi8-openjdk-21-runtime-ubi.json │ │ │ ├── ubi8-openjdk-8-rhel-x86_64.json │ │ │ └── ubi8-openjdk-8-runtime-ubi.json │ │ └── templates │ │ │ └── openjdk-web-basic-s2i.json │ │ ├── jenkins │ │ ├── imagestreams │ │ │ ├── jenkins-agent-base-rhel.json │ │ │ └── jenkins-rhel.json │ │ └── templates │ │ │ ├── jenkins-ephemeral-monitored.json │ │ │ ├── jenkins-ephemeral.json │ │ │ ├── jenkins-persistent-monitored.json │ │ │ └── jenkins-persistent.json │ │ ├── mariadb │ │ ├── imagestreams │ │ │ └── mariadb-rhel.json │ │ └── templates │ │ │ ├── mariadb-ephemeral.json │ │ │ └── mariadb-persistent.json │ │ ├── mysql │ │ ├── imagestreams │ │ │ └── mysql-rhel.json │ │ └── templates │ │ │ ├── mysql-ephemeral.json │ │ │ └── mysql-persistent.json │ │ ├── nginx │ │ ├── imagestreams │ │ │ └── nginx-rhel.json │ │ └── templates │ │ │ └── nginx-example.json │ │ ├── nodejs │ │ ├── imagestreams │ │ │ └── nodejs-rhel.json │ │ └── templates │ │ │ ├── nodejs-postgresql-example.json │ │ │ ├── nodejs-postgresql-persistent.json │ │ │ └── react-web-app-example.json │ │ ├── perl │ │ └── imagestreams │ │ │ └── perl-rhel.json │ │ ├── php │ │ └── imagestreams │ │ │ └── php-rhel.json │ │ ├── postgresql │ │ ├── imagestreams │ │ │ └── postgresql-rhel.json │ │ └── templates │ │ │ ├── postgresql-ephemeral.json │ │ │ └── postgresql-persistent.json │ │ ├── python │ │ └── imagestreams │ │ │ └── python-rhel.json │ │ ├── rails │ │ └── templates │ │ │ ├── rails-pgsql-persistent.json │ │ │ └── rails-postgresql-example.json │ │ ├── redis │ │ ├── imagestreams │ │ │ └── redis-rhel.json │ │ └── templates │ │ │ ├── redis-ephemeral.json │ │ │ └── redis-persistent.json │ │ ├── ruby │ │ └── imagestreams │ │ │ └── ruby-rhel.json │ │ ├── sso │ │ ├── imagestreams │ │ │ ├── postgresql13-for-sso75-openshift-rhel8.json │ │ │ ├── postgresql13-for-sso76-openshift-rhel8.json │ │ │ ├── sso75-openshift-rhel8.json │ │ │ └── sso76-openshift-rhel8.json │ │ └── templates │ │ │ ├── sso75-https.json │ │ │ ├── sso75-ocp4-x509-https.json │ │ │ ├── sso75-ocp4-x509-postgresql-persistent.json │ │ │ ├── sso75-postgresql-persistent.json │ │ │ ├── sso75-postgresql.json │ │ │ ├── sso76-ocp4-https.json │ │ │ ├── sso76-ocp4-postgresql-persistent.json │ │ │ ├── sso76-ocp4-postgresql.json │ │ │ ├── sso76-ocp4-x509-https.json │ │ │ └── sso76-ocp4-x509-postgresql-persistent.json │ │ └── webserver │ │ ├── imagestreams │ │ ├── jboss-webserver57-openjdk11-tomcat9-openshift-ubi8.json │ │ └── jboss-webserver57-openjdk8-tomcat9-openshift-ubi8.json │ │ └── templates │ │ ├── jws57-openjdk11-tomcat9-ubi8-basic-s2i.json │ │ ├── jws57-openjdk11-tomcat9-ubi8-https-s2i.json │ │ ├── jws57-openjdk8-tomcat9-ubi8-basic-s2i.json │ │ └── jws57-openjdk8-tomcat9-ubi8-https-s2i.json └── okd-x86_64 │ ├── community │ ├── dotnet │ │ └── imagestreams │ │ │ ├── dotnet-aspnet.json │ │ │ ├── dotnet-runtime.json │ │ │ └── dotnet.json │ ├── golang │ │ └── imagestreams │ │ │ └── golang-centos.json │ ├── httpd │ │ └── imagestreams │ │ │ └── httpd-centos.json │ ├── java │ │ ├── imagestreams │ │ │ └── java-ubi.json │ │ └── templates │ │ │ └── openjdk-web-basic-s2i.json │ ├── jenkins │ │ └── imagestreams │ │ │ ├── jenkins-agent-base-ubi.json │ │ │ └── jenkins-ubi.json │ ├── mariadb │ │ └── imagestreams │ │ │ └── mariadb-centos.json │ ├── mysql │ │ └── imagestreams │ │ │ └── mysql-centos.json │ ├── nginx │ │ └── imagestreams │ │ │ └── nginx-centos.json │ ├── nodejs │ │ └── imagestreams │ │ │ └── nodejs-centos.json │ ├── openliberty │ │ └── imagestreams │ │ │ └── openliberty.json │ ├── perl │ │ └── imagestreams │ │ │ └── perl-centos.json │ ├── php │ │ └── imagestreams │ │ │ └── php-centos.json │ ├── postgresql │ │ └── imagestreams │ │ │ └── postgresql-centos.json │ ├── python │ │ └── imagestreams │ │ │ └── python-centos.json │ ├── redis │ │ └── imagestreams │ │ │ └── redis-centos.json │ ├── ruby │ │ └── imagestreams │ │ │ └── ruby-centos.json │ └── wildfly │ │ └── imagestreams │ │ ├── wildfly-runtime-ubi.json │ │ └── wildfly-s2i-ubi.json │ └── official │ ├── cakephp │ └── templates │ │ ├── cakephp-mysql-example.json │ │ └── cakephp-mysql-persistent.json │ ├── dancer │ └── templates │ │ ├── dancer-mysql-example.json │ │ └── dancer-mysql-persistent.json │ ├── django │ └── templates │ │ ├── django-psql-example.json │ │ └── django-psql-persistent.json │ ├── httpd │ └── templates │ │ └── httpd-example.json │ ├── java │ └── imagestreams │ │ ├── java-runtime-ubi.json │ │ ├── ubi8-openjdk-11-runtime-ubi.json │ │ ├── ubi8-openjdk-17-runtime-ubi.json │ │ ├── ubi8-openjdk-21-runtime-ubi.json │ │ └── ubi8-openjdk-8-runtime-ubi.json │ ├── jenkins │ └── templates │ │ ├── jenkins-ephemeral-monitored.json │ │ ├── jenkins-ephemeral.json │ │ ├── jenkins-persistent-monitored.json │ │ └── jenkins-persistent.json │ ├── mariadb │ └── templates │ │ ├── mariadb-ephemeral.json │ │ └── mariadb-persistent.json │ ├── mysql │ └── templates │ │ ├── mysql-ephemeral.json │ │ └── mysql-persistent.json │ ├── nginx │ └── templates │ │ └── nginx-example.json │ ├── nodejs │ └── templates │ │ ├── nodejs-postgresql-example.json │ │ ├── nodejs-postgresql-persistent.json │ │ └── react-web-app-example.json │ ├── postgresql │ └── templates │ │ ├── postgresql-ephemeral.json │ │ └── postgresql-persistent.json │ ├── rails │ └── templates │ │ ├── rails-pgsql-persistent.json │ │ └── rails-postgresql-example.json │ └── redis │ └── templates │ ├── redis-ephemeral.json │ └── redis-persistent.json └── vendor ├── github.com ├── fsnotify │ └── fsnotify │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .mailmap │ │ ├── AUTHORS │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── fen.go │ │ ├── fsnotify.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── inotify.go │ │ ├── inotify_poller.go │ │ ├── kqueue.go │ │ ├── open_mode_bsd.go │ │ ├── open_mode_darwin.go │ │ └── windows.go ├── ghodss │ └── yaml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── fields.go │ │ └── yaml.go ├── go-logr │ └── logr │ │ ├── .golangci.yaml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── discard.go │ │ ├── go.mod │ │ └── logr.go ├── gogo │ └── protobuf │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── proto │ │ ├── Makefile │ │ ├── clone.go │ │ ├── custom_gogo.go │ │ ├── decode.go │ │ ├── deprecated.go │ │ ├── discard.go │ │ ├── duration.go │ │ ├── duration_gogo.go │ │ ├── encode.go │ │ ├── encode_gogo.go │ │ ├── equal.go │ │ ├── extensions.go │ │ ├── extensions_gogo.go │ │ ├── lib.go │ │ ├── lib_gogo.go │ │ ├── message_set.go │ │ ├── pointer_reflect.go │ │ ├── pointer_reflect_gogo.go │ │ ├── pointer_unsafe.go │ │ ├── pointer_unsafe_gogo.go │ │ ├── properties.go │ │ ├── properties_gogo.go │ │ ├── skip_gogo.go │ │ ├── table_marshal.go │ │ ├── table_marshal_gogo.go │ │ ├── table_merge.go │ │ ├── table_unmarshal.go │ │ ├── table_unmarshal_gogo.go │ │ ├── text.go │ │ ├── text_gogo.go │ │ ├── text_parser.go │ │ ├── timestamp.go │ │ ├── timestamp_gogo.go │ │ ├── wrappers.go │ │ └── wrappers_gogo.go │ │ └── sortkeys │ │ └── sortkeys.go ├── google │ └── gofuzz │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── fuzz.go │ │ └── go.mod ├── hashicorp │ └── hcl │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── decoder.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── hcl.go │ │ ├── hcl │ │ ├── ast │ │ │ ├── ast.go │ │ │ └── walk.go │ │ ├── parser │ │ │ ├── error.go │ │ │ └── parser.go │ │ ├── printer │ │ │ ├── nodes.go │ │ │ └── printer.go │ │ ├── scanner │ │ │ └── scanner.go │ │ ├── strconv │ │ │ └── quote.go │ │ └── token │ │ │ ├── position.go │ │ │ └── token.go │ │ ├── json │ │ ├── parser │ │ │ ├── flatten.go │ │ │ └── parser.go │ │ ├── scanner │ │ │ └── scanner.go │ │ └── token │ │ │ ├── position.go │ │ │ └── token.go │ │ ├── lex.go │ │ └── parse.go ├── inconshreveable │ └── mousetrap │ │ ├── LICENSE │ │ ├── README.md │ │ ├── trap_others.go │ │ ├── trap_windows.go │ │ └── trap_windows_1.4.go ├── json-iterator │ └── go │ │ ├── .codecov.yml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── adapter.go │ │ ├── any.go │ │ ├── any_array.go │ │ ├── any_bool.go │ │ ├── any_float.go │ │ ├── any_int32.go │ │ ├── any_int64.go │ │ ├── any_invalid.go │ │ ├── any_nil.go │ │ ├── any_number.go │ │ ├── any_object.go │ │ ├── any_str.go │ │ ├── any_uint32.go │ │ ├── any_uint64.go │ │ ├── build.sh │ │ ├── config.go │ │ ├── fuzzy_mode_convert_table.md │ │ ├── go.mod │ │ ├── go.sum │ │ ├── iter.go │ │ ├── iter_array.go │ │ ├── iter_float.go │ │ ├── iter_int.go │ │ ├── iter_object.go │ │ ├── iter_skip.go │ │ ├── iter_skip_sloppy.go │ │ ├── iter_skip_strict.go │ │ ├── iter_str.go │ │ ├── jsoniter.go │ │ ├── pool.go │ │ ├── reflect.go │ │ ├── reflect_array.go │ │ ├── reflect_dynamic.go │ │ ├── reflect_extension.go │ │ ├── reflect_json_number.go │ │ ├── reflect_json_raw_message.go │ │ ├── reflect_map.go │ │ ├── reflect_marshaler.go │ │ ├── reflect_native.go │ │ ├── reflect_optional.go │ │ ├── reflect_slice.go │ │ ├── reflect_struct_decoder.go │ │ ├── reflect_struct_encoder.go │ │ ├── stream.go │ │ ├── stream_float.go │ │ ├── stream_int.go │ │ ├── stream_str.go │ │ └── test.sh ├── magiconair │ └── properties │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── decode.go │ │ ├── doc.go │ │ ├── go.mod │ │ ├── integrate.go │ │ ├── lex.go │ │ ├── load.go │ │ ├── parser.go │ │ ├── properties.go │ │ └── rangecheck.go ├── mitchellh │ ├── go-homedir │ │ ├── LICENSE │ │ ├── README.md │ │ ├── go.mod │ │ └── homedir.go │ └── mapstructure │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── decode_hooks.go │ │ ├── error.go │ │ ├── go.mod │ │ └── mapstructure.go ├── modern-go │ ├── concurrent │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── executor.go │ │ ├── go_above_19.go │ │ ├── go_below_19.go │ │ ├── log.go │ │ ├── test.sh │ │ └── unbounded_executor.go │ └── reflect2 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── go.mod │ │ ├── go_above_118.go │ │ ├── go_above_19.go │ │ ├── go_below_118.go │ │ ├── reflect2.go │ │ ├── reflect2_amd64.s │ │ ├── reflect2_kind.go │ │ ├── relfect2_386.s │ │ ├── relfect2_amd64p32.s │ │ ├── relfect2_arm.s │ │ ├── relfect2_arm64.s │ │ ├── relfect2_mips64x.s │ │ ├── relfect2_mipsx.s │ │ ├── relfect2_ppc64x.s │ │ ├── relfect2_s390x.s │ │ ├── safe_field.go │ │ ├── safe_map.go │ │ ├── safe_slice.go │ │ ├── safe_struct.go │ │ ├── safe_type.go │ │ ├── type_map.go │ │ ├── unsafe_array.go │ │ ├── unsafe_eface.go │ │ ├── unsafe_field.go │ │ ├── unsafe_iface.go │ │ ├── unsafe_link.go │ │ ├── unsafe_map.go │ │ ├── unsafe_ptr.go │ │ ├── unsafe_slice.go │ │ ├── unsafe_struct.go │ │ └── unsafe_type.go ├── openshift │ └── api │ │ ├── LICENSE │ │ ├── image │ │ ├── docker10 │ │ │ ├── doc.go │ │ │ ├── dockertypes.go │ │ │ ├── register.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── dockerpre012 │ │ │ ├── deepcopy.go │ │ │ ├── doc.go │ │ │ ├── dockertypes.go │ │ │ ├── register.go │ │ │ └── zz_generated.deepcopy.go │ │ └── v1 │ │ │ ├── consts.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── legacy.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── pkg │ │ └── serialization │ │ │ └── serialization.go │ │ └── template │ │ └── v1 │ │ ├── codec.go │ │ ├── consts.go │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── legacy.go │ │ ├── register.go │ │ ├── types.go │ │ ├── zz_generated.deepcopy.go │ │ └── zz_generated.swagger_doc_generated.go ├── pelletier │ └── go-toml │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── Dockerfile │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ ├── README.md │ │ ├── azure-pipelines.yml │ │ ├── benchmark.sh │ │ ├── doc.go │ │ ├── example-crlf.toml │ │ ├── example.toml │ │ ├── fuzz.go │ │ ├── fuzz.sh │ │ ├── go.mod │ │ ├── keysparsing.go │ │ ├── lexer.go │ │ ├── localtime.go │ │ ├── marshal.go │ │ ├── marshal_OrderPreserve_test.toml │ │ ├── marshal_test.toml │ │ ├── parser.go │ │ ├── position.go │ │ ├── token.go │ │ ├── toml.go │ │ ├── tomlpub.go │ │ ├── tomltree_create.go │ │ ├── tomltree_write.go │ │ └── tomltree_writepub.go ├── spf13 │ ├── afero │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── afero.go │ │ ├── appveyor.yml │ │ ├── basepath.go │ │ ├── cacheOnReadFs.go │ │ ├── const_bsds.go │ │ ├── const_win_unix.go │ │ ├── copyOnWriteFs.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── httpFs.go │ │ ├── iofs.go │ │ ├── ioutil.go │ │ ├── lstater.go │ │ ├── match.go │ │ ├── mem │ │ │ ├── dir.go │ │ │ ├── dirmap.go │ │ │ └── file.go │ │ ├── memmap.go │ │ ├── os.go │ │ ├── path.go │ │ ├── readonlyfs.go │ │ ├── regexpfs.go │ │ ├── symlink.go │ │ ├── unionFile.go │ │ └── util.go │ ├── cast │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── cast.go │ │ ├── caste.go │ │ ├── go.mod │ │ ├── go.sum │ │ └── timeformattype_string.go │ ├── cobra │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .mailmap │ │ ├── CHANGELOG.md │ │ ├── CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.txt │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README.md │ │ ├── args.go │ │ ├── bash_completions.go │ │ ├── bash_completions.md │ │ ├── bash_completionsV2.go │ │ ├── cobra.go │ │ ├── command.go │ │ ├── command_notwin.go │ │ ├── command_win.go │ │ ├── completions.go │ │ ├── fish_completions.go │ │ ├── fish_completions.md │ │ ├── go.mod │ │ ├── go.sum │ │ ├── powershell_completions.go │ │ ├── powershell_completions.md │ │ ├── projects_using_cobra.md │ │ ├── shell_completions.go │ │ ├── shell_completions.md │ │ ├── user_guide.md │ │ ├── zsh_completions.go │ │ └── zsh_completions.md │ ├── jwalterweatherman │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── default_notepad.go │ │ ├── go.mod │ │ ├── log_counter.go │ │ └── notepad.go │ ├── pflag │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bool.go │ │ ├── bool_slice.go │ │ ├── bytes.go │ │ ├── count.go │ │ ├── duration.go │ │ ├── duration_slice.go │ │ ├── flag.go │ │ ├── float32.go │ │ ├── float32_slice.go │ │ ├── float64.go │ │ ├── float64_slice.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── golangflag.go │ │ ├── int.go │ │ ├── int16.go │ │ ├── int32.go │ │ ├── int32_slice.go │ │ ├── int64.go │ │ ├── int64_slice.go │ │ ├── int8.go │ │ ├── int_slice.go │ │ ├── ip.go │ │ ├── ip_slice.go │ │ ├── ipmask.go │ │ ├── ipnet.go │ │ ├── string.go │ │ ├── string_array.go │ │ ├── string_slice.go │ │ ├── string_to_int.go │ │ ├── string_to_int64.go │ │ ├── string_to_string.go │ │ ├── uint.go │ │ ├── uint16.go │ │ ├── uint32.go │ │ ├── uint64.go │ │ ├── uint8.go │ │ └── uint_slice.go │ └── viper │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── TROUBLESHOOTING.md │ │ ├── flags.go │ │ ├── fs.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── internal │ │ └── encoding │ │ │ ├── decoder.go │ │ │ ├── encoder.go │ │ │ ├── error.go │ │ │ ├── hcl │ │ │ └── codec.go │ │ │ ├── json │ │ │ └── codec.go │ │ │ ├── toml │ │ │ └── codec.go │ │ │ └── yaml │ │ │ └── codec.go │ │ ├── logger.go │ │ ├── util.go │ │ ├── viper.go │ │ ├── viper_go1_15.go │ │ ├── viper_go1_16.go │ │ ├── watch.go │ │ └── watch_wasm.go └── subosito │ └── gotenv │ ├── .env │ ├── .env.invalid │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── appveyor.yml │ └── gotenv.go ├── golang.org └── x │ ├── net │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ ├── http │ │ └── httpguts │ │ │ ├── guts.go │ │ │ └── httplex.go │ ├── http2 │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── ascii.go │ │ ├── ciphers.go │ │ ├── client_conn_pool.go │ │ ├── databuffer.go │ │ ├── errors.go │ │ ├── flow.go │ │ ├── frame.go │ │ ├── go111.go │ │ ├── go115.go │ │ ├── gotrack.go │ │ ├── headermap.go │ │ ├── hpack │ │ │ ├── encode.go │ │ │ ├── hpack.go │ │ │ ├── huffman.go │ │ │ └── tables.go │ │ ├── http2.go │ │ ├── not_go111.go │ │ ├── not_go115.go │ │ ├── pipe.go │ │ ├── server.go │ │ ├── transport.go │ │ ├── write.go │ │ ├── writesched.go │ │ ├── writesched_priority.go │ │ └── writesched_random.go │ └── idna │ │ ├── idna10.0.0.go │ │ ├── idna9.0.0.go │ │ ├── punycode.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables12.0.0.go │ │ ├── tables13.0.0.go │ │ ├── tables9.0.0.go │ │ ├── trie.go │ │ └── trieval.go │ ├── sys │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ ├── internal │ │ └── unsafeheader │ │ │ └── unsafeheader.go │ └── unix │ │ ├── .gitignore │ │ ├── README.md │ │ ├── affinity_linux.go │ │ ├── aliases.go │ │ ├── asm_aix_ppc64.s │ │ ├── asm_bsd_386.s │ │ ├── asm_bsd_amd64.s │ │ ├── asm_bsd_arm.s │ │ ├── asm_bsd_arm64.s │ │ ├── asm_linux_386.s │ │ ├── asm_linux_amd64.s │ │ ├── asm_linux_arm.s │ │ ├── asm_linux_arm64.s │ │ ├── asm_linux_mips64x.s │ │ ├── asm_linux_mipsx.s │ │ ├── asm_linux_ppc64x.s │ │ ├── asm_linux_riscv64.s │ │ ├── asm_linux_s390x.s │ │ ├── asm_openbsd_mips64.s │ │ ├── asm_solaris_amd64.s │ │ ├── asm_zos_s390x.s │ │ ├── bluetooth_linux.go │ │ ├── cap_freebsd.go │ │ ├── constants.go │ │ ├── dev_aix_ppc.go │ │ ├── dev_aix_ppc64.go │ │ ├── dev_darwin.go │ │ ├── dev_dragonfly.go │ │ ├── dev_freebsd.go │ │ ├── dev_linux.go │ │ ├── dev_netbsd.go │ │ ├── dev_openbsd.go │ │ ├── dev_zos.go │ │ ├── dirent.go │ │ ├── endian_big.go │ │ ├── endian_little.go │ │ ├── env_unix.go │ │ ├── epoll_zos.go │ │ ├── errors_freebsd_386.go │ │ ├── errors_freebsd_amd64.go │ │ ├── errors_freebsd_arm.go │ │ ├── errors_freebsd_arm64.go │ │ ├── fcntl.go │ │ ├── fcntl_darwin.go │ │ ├── fcntl_linux_32bit.go │ │ ├── fdset.go │ │ ├── fstatfs_zos.go │ │ ├── gccgo.go │ │ ├── gccgo_c.c │ │ ├── gccgo_linux_amd64.go │ │ ├── ifreq_linux.go │ │ ├── ioctl.go │ │ ├── ioctl_linux.go │ │ ├── ioctl_zos.go │ │ ├── mkall.sh │ │ ├── mkerrors.sh │ │ ├── pagesize_unix.go │ │ ├── pledge_openbsd.go │ │ ├── ptrace_darwin.go │ │ ├── ptrace_ios.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── readdirent_getdents.go │ │ ├── readdirent_getdirentries.go │ │ ├── sockcmsg_dragonfly.go │ │ ├── sockcmsg_linux.go │ │ ├── sockcmsg_unix.go │ │ ├── sockcmsg_unix_other.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_aix.go │ │ ├── syscall_aix_ppc.go │ │ ├── syscall_aix_ppc64.go │ │ ├── syscall_bsd.go │ │ ├── syscall_darwin.1_12.go │ │ ├── syscall_darwin.1_13.go │ │ ├── syscall_darwin.go │ │ ├── syscall_darwin_amd64.go │ │ ├── syscall_darwin_arm64.go │ │ ├── syscall_darwin_libSystem.go │ │ ├── syscall_dragonfly.go │ │ ├── syscall_dragonfly_amd64.go │ │ ├── syscall_freebsd.go │ │ ├── syscall_freebsd_386.go │ │ ├── syscall_freebsd_amd64.go │ │ ├── syscall_freebsd_arm.go │ │ ├── syscall_freebsd_arm64.go │ │ ├── syscall_illumos.go │ │ ├── syscall_linux.go │ │ ├── syscall_linux_386.go │ │ ├── syscall_linux_amd64.go │ │ ├── syscall_linux_amd64_gc.go │ │ ├── syscall_linux_arm.go │ │ ├── syscall_linux_arm64.go │ │ ├── syscall_linux_gc.go │ │ ├── syscall_linux_gc_386.go │ │ ├── syscall_linux_gc_arm.go │ │ ├── syscall_linux_gccgo_386.go │ │ ├── syscall_linux_gccgo_arm.go │ │ ├── syscall_linux_mips64x.go │ │ ├── syscall_linux_mipsx.go │ │ ├── syscall_linux_ppc.go │ │ ├── syscall_linux_ppc64x.go │ │ ├── syscall_linux_riscv64.go │ │ ├── syscall_linux_s390x.go │ │ ├── syscall_linux_sparc64.go │ │ ├── syscall_netbsd.go │ │ ├── syscall_netbsd_386.go │ │ ├── syscall_netbsd_amd64.go │ │ ├── syscall_netbsd_arm.go │ │ ├── syscall_netbsd_arm64.go │ │ ├── syscall_openbsd.go │ │ ├── syscall_openbsd_386.go │ │ ├── syscall_openbsd_amd64.go │ │ ├── syscall_openbsd_arm.go │ │ ├── syscall_openbsd_arm64.go │ │ ├── syscall_openbsd_mips64.go │ │ ├── syscall_solaris.go │ │ ├── syscall_solaris_amd64.go │ │ ├── syscall_unix.go │ │ ├── syscall_unix_gc.go │ │ ├── syscall_unix_gc_ppc64x.go │ │ ├── syscall_zos_s390x.go │ │ ├── sysvshm_linux.go │ │ ├── sysvshm_unix.go │ │ ├── sysvshm_unix_other.go │ │ ├── timestruct.go │ │ ├── unveil_openbsd.go │ │ ├── xattr_bsd.go │ │ ├── zerrors_aix_ppc.go │ │ ├── zerrors_aix_ppc64.go │ │ ├── zerrors_darwin_amd64.go │ │ ├── zerrors_darwin_arm64.go │ │ ├── zerrors_dragonfly_amd64.go │ │ ├── zerrors_freebsd_386.go │ │ ├── zerrors_freebsd_amd64.go │ │ ├── zerrors_freebsd_arm.go │ │ ├── zerrors_freebsd_arm64.go │ │ ├── zerrors_linux.go │ │ ├── zerrors_linux_386.go │ │ ├── zerrors_linux_amd64.go │ │ ├── zerrors_linux_arm.go │ │ ├── zerrors_linux_arm64.go │ │ ├── zerrors_linux_mips.go │ │ ├── zerrors_linux_mips64.go │ │ ├── zerrors_linux_mips64le.go │ │ ├── zerrors_linux_mipsle.go │ │ ├── zerrors_linux_ppc.go │ │ ├── zerrors_linux_ppc64.go │ │ ├── zerrors_linux_ppc64le.go │ │ ├── zerrors_linux_riscv64.go │ │ ├── zerrors_linux_s390x.go │ │ ├── zerrors_linux_sparc64.go │ │ ├── zerrors_netbsd_386.go │ │ ├── zerrors_netbsd_amd64.go │ │ ├── zerrors_netbsd_arm.go │ │ ├── zerrors_netbsd_arm64.go │ │ ├── zerrors_openbsd_386.go │ │ ├── zerrors_openbsd_amd64.go │ │ ├── zerrors_openbsd_arm.go │ │ ├── zerrors_openbsd_arm64.go │ │ ├── zerrors_openbsd_mips64.go │ │ ├── zerrors_solaris_amd64.go │ │ ├── zerrors_zos_s390x.go │ │ ├── zptrace_armnn_linux.go │ │ ├── zptrace_linux_arm64.go │ │ ├── zptrace_mipsnn_linux.go │ │ ├── zptrace_mipsnnle_linux.go │ │ ├── zptrace_x86_linux.go │ │ ├── zsyscall_aix_ppc.go │ │ ├── zsyscall_aix_ppc64.go │ │ ├── zsyscall_aix_ppc64_gc.go │ │ ├── zsyscall_aix_ppc64_gccgo.go │ │ ├── zsyscall_darwin_amd64.1_13.go │ │ ├── zsyscall_darwin_amd64.1_13.s │ │ ├── zsyscall_darwin_amd64.go │ │ ├── zsyscall_darwin_amd64.s │ │ ├── zsyscall_darwin_arm64.1_13.go │ │ ├── zsyscall_darwin_arm64.1_13.s │ │ ├── zsyscall_darwin_arm64.go │ │ ├── zsyscall_darwin_arm64.s │ │ ├── zsyscall_dragonfly_amd64.go │ │ ├── zsyscall_freebsd_386.go │ │ ├── zsyscall_freebsd_amd64.go │ │ ├── zsyscall_freebsd_arm.go │ │ ├── zsyscall_freebsd_arm64.go │ │ ├── zsyscall_illumos_amd64.go │ │ ├── zsyscall_linux.go │ │ ├── zsyscall_linux_386.go │ │ ├── zsyscall_linux_amd64.go │ │ ├── zsyscall_linux_arm.go │ │ ├── zsyscall_linux_arm64.go │ │ ├── zsyscall_linux_mips.go │ │ ├── zsyscall_linux_mips64.go │ │ ├── zsyscall_linux_mips64le.go │ │ ├── zsyscall_linux_mipsle.go │ │ ├── zsyscall_linux_ppc.go │ │ ├── zsyscall_linux_ppc64.go │ │ ├── zsyscall_linux_ppc64le.go │ │ ├── zsyscall_linux_riscv64.go │ │ ├── zsyscall_linux_s390x.go │ │ ├── zsyscall_linux_sparc64.go │ │ ├── zsyscall_netbsd_386.go │ │ ├── zsyscall_netbsd_amd64.go │ │ ├── zsyscall_netbsd_arm.go │ │ ├── zsyscall_netbsd_arm64.go │ │ ├── zsyscall_openbsd_386.go │ │ ├── zsyscall_openbsd_amd64.go │ │ ├── zsyscall_openbsd_arm.go │ │ ├── zsyscall_openbsd_arm64.go │ │ ├── zsyscall_openbsd_mips64.go │ │ ├── zsyscall_solaris_amd64.go │ │ ├── zsyscall_zos_s390x.go │ │ ├── zsysctl_openbsd_386.go │ │ ├── zsysctl_openbsd_amd64.go │ │ ├── zsysctl_openbsd_arm.go │ │ ├── zsysctl_openbsd_arm64.go │ │ ├── zsysctl_openbsd_mips64.go │ │ ├── zsysnum_darwin_amd64.go │ │ ├── zsysnum_darwin_arm64.go │ │ ├── zsysnum_dragonfly_amd64.go │ │ ├── zsysnum_freebsd_386.go │ │ ├── zsysnum_freebsd_amd64.go │ │ ├── zsysnum_freebsd_arm.go │ │ ├── zsysnum_freebsd_arm64.go │ │ ├── zsysnum_linux_386.go │ │ ├── zsysnum_linux_amd64.go │ │ ├── zsysnum_linux_arm.go │ │ ├── zsysnum_linux_arm64.go │ │ ├── zsysnum_linux_mips.go │ │ ├── zsysnum_linux_mips64.go │ │ ├── zsysnum_linux_mips64le.go │ │ ├── zsysnum_linux_mipsle.go │ │ ├── zsysnum_linux_ppc.go │ │ ├── zsysnum_linux_ppc64.go │ │ ├── zsysnum_linux_ppc64le.go │ │ ├── zsysnum_linux_riscv64.go │ │ ├── zsysnum_linux_s390x.go │ │ ├── zsysnum_linux_sparc64.go │ │ ├── zsysnum_netbsd_386.go │ │ ├── zsysnum_netbsd_amd64.go │ │ ├── zsysnum_netbsd_arm.go │ │ ├── zsysnum_netbsd_arm64.go │ │ ├── zsysnum_openbsd_386.go │ │ ├── zsysnum_openbsd_amd64.go │ │ ├── zsysnum_openbsd_arm.go │ │ ├── zsysnum_openbsd_arm64.go │ │ ├── zsysnum_openbsd_mips64.go │ │ ├── zsysnum_zos_s390x.go │ │ ├── ztypes_aix_ppc.go │ │ ├── ztypes_aix_ppc64.go │ │ ├── ztypes_darwin_amd64.go │ │ ├── ztypes_darwin_arm64.go │ │ ├── ztypes_dragonfly_amd64.go │ │ ├── ztypes_freebsd_386.go │ │ ├── ztypes_freebsd_amd64.go │ │ ├── ztypes_freebsd_arm.go │ │ ├── ztypes_freebsd_arm64.go │ │ ├── ztypes_illumos_amd64.go │ │ ├── ztypes_linux.go │ │ ├── ztypes_linux_386.go │ │ ├── ztypes_linux_amd64.go │ │ ├── ztypes_linux_arm.go │ │ ├── ztypes_linux_arm64.go │ │ ├── ztypes_linux_mips.go │ │ ├── ztypes_linux_mips64.go │ │ ├── ztypes_linux_mips64le.go │ │ ├── ztypes_linux_mipsle.go │ │ ├── ztypes_linux_ppc.go │ │ ├── ztypes_linux_ppc64.go │ │ ├── ztypes_linux_ppc64le.go │ │ ├── ztypes_linux_riscv64.go │ │ ├── ztypes_linux_s390x.go │ │ ├── ztypes_linux_sparc64.go │ │ ├── ztypes_netbsd_386.go │ │ ├── ztypes_netbsd_amd64.go │ │ ├── ztypes_netbsd_arm.go │ │ ├── ztypes_netbsd_arm64.go │ │ ├── ztypes_openbsd_386.go │ │ ├── ztypes_openbsd_amd64.go │ │ ├── ztypes_openbsd_arm.go │ │ ├── ztypes_openbsd_arm64.go │ │ ├── ztypes_openbsd_mips64.go │ │ ├── ztypes_solaris_amd64.go │ │ └── ztypes_zos_s390x.go │ └── text │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ ├── secure │ └── bidirule │ │ ├── bidirule.go │ │ ├── bidirule10.0.0.go │ │ └── bidirule9.0.0.go │ ├── transform │ └── transform.go │ └── unicode │ ├── bidi │ ├── bidi.go │ ├── bracket.go │ ├── core.go │ ├── prop.go │ ├── tables10.0.0.go │ ├── tables11.0.0.go │ ├── tables12.0.0.go │ ├── tables13.0.0.go │ ├── tables9.0.0.go │ └── trieval.go │ └── norm │ ├── composition.go │ ├── forminfo.go │ ├── input.go │ ├── iter.go │ ├── normalize.go │ ├── readwriter.go │ ├── tables10.0.0.go │ ├── tables11.0.0.go │ ├── tables12.0.0.go │ ├── tables13.0.0.go │ ├── tables9.0.0.go │ ├── transform.go │ └── trie.go ├── gopkg.in ├── inf.v0 │ ├── LICENSE │ ├── dec.go │ └── rounder.go ├── ini.v1 │ ├── .gitignore │ ├── .golangci.yml │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── codecov.yml │ ├── data_source.go │ ├── deprecated.go │ ├── error.go │ ├── file.go │ ├── helper.go │ ├── ini.go │ ├── key.go │ ├── parser.go │ ├── section.go │ └── struct.go └── yaml.v2 │ ├── .travis.yml │ ├── LICENSE │ ├── LICENSE.libyaml │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── go.mod │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go ├── k8s.io ├── api │ ├── LICENSE │ └── core │ │ └── v1 │ │ ├── annotation_key_constants.go │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── objectreference.go │ │ ├── register.go │ │ ├── resource.go │ │ ├── taint.go │ │ ├── toleration.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ ├── well_known_labels.go │ │ ├── well_known_taints.go │ │ └── zz_generated.deepcopy.go ├── apimachinery │ ├── LICENSE │ ├── pkg │ │ ├── api │ │ │ └── resource │ │ │ │ ├── OWNERS │ │ │ │ ├── amount.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── math.go │ │ │ │ ├── quantity.go │ │ │ │ ├── quantity_proto.go │ │ │ │ ├── scale_int.go │ │ │ │ ├── suffix.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── apis │ │ │ └── meta │ │ │ │ └── v1 │ │ │ │ ├── OWNERS │ │ │ │ ├── controller_ref.go │ │ │ │ ├── conversion.go │ │ │ │ ├── deepcopy.go │ │ │ │ ├── doc.go │ │ │ │ ├── duration.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── group_version.go │ │ │ │ ├── helpers.go │ │ │ │ ├── labels.go │ │ │ │ ├── meta.go │ │ │ │ ├── micro_time.go │ │ │ │ ├── micro_time_proto.go │ │ │ │ ├── register.go │ │ │ │ ├── time.go │ │ │ │ ├── time_proto.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── unstructured │ │ │ │ ├── helpers.go │ │ │ │ ├── unstructured.go │ │ │ │ ├── unstructured_list.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── watch.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.defaults.go │ │ ├── conversion │ │ │ ├── converter.go │ │ │ ├── deep_equal.go │ │ │ ├── doc.go │ │ │ ├── helper.go │ │ │ └── queryparams │ │ │ │ ├── convert.go │ │ │ │ └── doc.go │ │ ├── fields │ │ │ ├── doc.go │ │ │ ├── fields.go │ │ │ ├── requirements.go │ │ │ └── selector.go │ │ ├── labels │ │ │ ├── doc.go │ │ │ ├── labels.go │ │ │ ├── selector.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── runtime │ │ │ ├── codec.go │ │ │ ├── codec_check.go │ │ │ ├── conversion.go │ │ │ ├── converter.go │ │ │ ├── doc.go │ │ │ ├── embedded.go │ │ │ ├── error.go │ │ │ ├── extension.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── helper.go │ │ │ ├── interfaces.go │ │ │ ├── mapper.go │ │ │ ├── negotiate.go │ │ │ ├── register.go │ │ │ ├── schema │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── group_version.go │ │ │ │ └── interfaces.go │ │ │ ├── scheme.go │ │ │ ├── scheme_builder.go │ │ │ ├── swagger_doc_generator.go │ │ │ ├── types.go │ │ │ ├── types_proto.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── selection │ │ │ └── operator.go │ │ ├── types │ │ │ ├── doc.go │ │ │ ├── namespacedname.go │ │ │ ├── nodename.go │ │ │ ├── patch.go │ │ │ └── uid.go │ │ ├── util │ │ │ ├── errors │ │ │ │ ├── doc.go │ │ │ │ └── errors.go │ │ │ ├── intstr │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ └── intstr.go │ │ │ ├── json │ │ │ │ └── json.go │ │ │ ├── naming │ │ │ │ └── from_stack.go │ │ │ ├── net │ │ │ │ ├── http.go │ │ │ │ ├── interface.go │ │ │ │ ├── port_range.go │ │ │ │ ├── port_split.go │ │ │ │ └── util.go │ │ │ ├── runtime │ │ │ │ └── runtime.go │ │ │ ├── sets │ │ │ │ ├── byte.go │ │ │ │ ├── doc.go │ │ │ │ ├── empty.go │ │ │ │ ├── int.go │ │ │ │ ├── int32.go │ │ │ │ ├── int64.go │ │ │ │ └── string.go │ │ │ └── validation │ │ │ │ ├── field │ │ │ │ ├── errors.go │ │ │ │ └── path.go │ │ │ │ └── validation.go │ │ └── watch │ │ │ ├── doc.go │ │ │ ├── filter.go │ │ │ ├── mux.go │ │ │ ├── streamwatcher.go │ │ │ ├── watch.go │ │ │ └── zz_generated.deepcopy.go │ └── third_party │ │ └── forked │ │ └── golang │ │ └── reflect │ │ └── deep_equal.go └── klog │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── OWNERS │ ├── README.md │ ├── RELEASE.md │ ├── SECURITY_CONTACTS │ ├── code-of-conduct.md │ ├── go.mod │ ├── go.sum │ ├── klog.go │ ├── klog_file.go │ └── v2 │ ├── .gitignore │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── OWNERS │ ├── README.md │ ├── RELEASE.md │ ├── SECURITY.md │ ├── SECURITY_CONTACTS │ ├── code-of-conduct.md │ ├── contextual.go │ ├── exit.go │ ├── go.mod │ ├── go.sum │ ├── imports.go │ ├── internal │ ├── buffer │ │ └── buffer.go │ ├── clock │ │ ├── README.md │ │ └── clock.go │ ├── serialize │ │ └── keyvalues.go │ └── severity │ │ └── severity.go │ ├── k8s_references.go │ ├── klog.go │ ├── klog_file.go │ ├── klog_file_others.go │ ├── klog_file_windows.go │ └── klogr.go ├── modules.txt └── sigs.k8s.io └── structured-merge-diff └── v3 ├── LICENSE └── value ├── allocator.go ├── doc.go ├── fields.go ├── jsontagutil.go ├── list.go ├── listreflect.go ├── listunstructured.go ├── map.go ├── mapreflect.go ├── mapunstructured.go ├── reflectcache.go ├── scalar.go ├── structreflect.go ├── value.go ├── valuereflect.go └── valueunstructured.go /.gitignore: -------------------------------------------------------------------------------- 1 | tmp 2 | _output 3 | library 4 | .idea 5 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/Makefile -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/OWNERS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/README.md -------------------------------------------------------------------------------- /api/library/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/api/library/v1/types.go -------------------------------------------------------------------------------- /arch/ppc64le/official/php/imagestreams/php-rhel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/arch/ppc64le/official/php/imagestreams/php-rhel.json -------------------------------------------------------------------------------- /arch/ppc64le/official/sso/templates/sso75-https.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/arch/ppc64le/official/sso/templates/sso75-https.json -------------------------------------------------------------------------------- /arch/s390x/official/eap/templates/eap74-sso-s2i.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/arch/s390x/official/eap/templates/eap74-sso-s2i.json -------------------------------------------------------------------------------- /arch/s390x/official/perl/imagestreams/perl-rhel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/arch/s390x/official/perl/imagestreams/perl-rhel.json -------------------------------------------------------------------------------- /arch/s390x/official/php/imagestreams/php-rhel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/arch/s390x/official/php/imagestreams/php-rhel.json -------------------------------------------------------------------------------- /arch/s390x/official/ruby/imagestreams/ruby-rhel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/arch/s390x/official/ruby/imagestreams/ruby-rhel.json -------------------------------------------------------------------------------- /arch/s390x/official/sso/templates/sso75-https.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/arch/s390x/official/sso/templates/sso75-https.json -------------------------------------------------------------------------------- /arch/x86_64/official/amq/templates/amq63-basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/arch/x86_64/official/amq/templates/amq63-basic.json -------------------------------------------------------------------------------- /arch/x86_64/official/amq/templates/amq63-ssl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/arch/x86_64/official/amq/templates/amq63-ssl.json -------------------------------------------------------------------------------- /arch/x86_64/official/fis/templates/apicurito.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/arch/x86_64/official/fis/templates/apicurito.json -------------------------------------------------------------------------------- /arch/x86_64/official/php/imagestreams/php-rhel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/arch/x86_64/official/php/imagestreams/php-rhel.json -------------------------------------------------------------------------------- /arch/x86_64/official/sso/templates/sso75-https.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/arch/x86_64/official/sso/templates/sso75-https.json -------------------------------------------------------------------------------- /cmd/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/cmd/common.go -------------------------------------------------------------------------------- /cmd/import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/cmd/import.go -------------------------------------------------------------------------------- /cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/cmd/root.go -------------------------------------------------------------------------------- /community.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/community.yaml -------------------------------------------------------------------------------- /community/dotnet/imagestreams/dotnet-aspnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/community/dotnet/imagestreams/dotnet-aspnet.json -------------------------------------------------------------------------------- /community/dotnet/imagestreams/dotnet-runtime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/community/dotnet/imagestreams/dotnet-runtime.json -------------------------------------------------------------------------------- /community/dotnet/imagestreams/dotnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/community/dotnet/imagestreams/dotnet.json -------------------------------------------------------------------------------- /community/golang/imagestreams/golang-centos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/community/golang/imagestreams/golang-centos.json -------------------------------------------------------------------------------- /community/httpd/imagestreams/httpd-centos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/community/httpd/imagestreams/httpd-centos.json -------------------------------------------------------------------------------- /community/java/imagestreams/java-ubi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/community/java/imagestreams/java-ubi.json -------------------------------------------------------------------------------- /community/java/templates/openjdk-web-basic-s2i.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/community/java/templates/openjdk-web-basic-s2i.json -------------------------------------------------------------------------------- /community/jenkins/imagestreams/jenkins-ubi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/community/jenkins/imagestreams/jenkins-ubi.json -------------------------------------------------------------------------------- /community/mariadb/imagestreams/mariadb-centos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/community/mariadb/imagestreams/mariadb-centos.json -------------------------------------------------------------------------------- /community/mysql/imagestreams/mysql-centos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/community/mysql/imagestreams/mysql-centos.json -------------------------------------------------------------------------------- /community/nginx/imagestreams/nginx-centos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/community/nginx/imagestreams/nginx-centos.json -------------------------------------------------------------------------------- /community/nodejs/imagestreams/nodejs-centos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/community/nodejs/imagestreams/nodejs-centos.json -------------------------------------------------------------------------------- /community/openliberty/imagestreams/openliberty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/community/openliberty/imagestreams/openliberty.json -------------------------------------------------------------------------------- /community/perl/imagestreams/perl-centos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/community/perl/imagestreams/perl-centos.json -------------------------------------------------------------------------------- /community/php/imagestreams/php-centos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/community/php/imagestreams/php-centos.json -------------------------------------------------------------------------------- /community/python/imagestreams/python-centos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/community/python/imagestreams/python-centos.json -------------------------------------------------------------------------------- /community/redis/imagestreams/redis-centos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/community/redis/imagestreams/redis-centos.json -------------------------------------------------------------------------------- /community/ruby/imagestreams/ruby-centos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/community/ruby/imagestreams/ruby-centos.json -------------------------------------------------------------------------------- /community/wildfly/imagestreams/wildfly-s2i-ubi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/community/wildfly/imagestreams/wildfly-s2i-ubi.json -------------------------------------------------------------------------------- /configs/cluster-samples-operator-periodic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/configs/cluster-samples-operator-periodic.yaml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/go.sum -------------------------------------------------------------------------------- /hack/verify-gofmt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/hack/verify-gofmt.sh -------------------------------------------------------------------------------- /hack/verify-periodic-old.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/hack/verify-periodic-old.sh -------------------------------------------------------------------------------- /hack/verify-periodic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/hack/verify-periodic.sh -------------------------------------------------------------------------------- /hack/verify-pullrequest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/hack/verify-pullrequest.sh -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/main.go -------------------------------------------------------------------------------- /official.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official.yaml -------------------------------------------------------------------------------- /official/3scale/imagestreams/apicast-gateway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/3scale/imagestreams/apicast-gateway.json -------------------------------------------------------------------------------- /official/3scale/templates/3scale-gateway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/3scale/templates/3scale-gateway.json -------------------------------------------------------------------------------- /official/amq/imagestreams/jboss-amq-63-rhel7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/amq/imagestreams/jboss-amq-63-rhel7.json -------------------------------------------------------------------------------- /official/amq/templates/amq63-basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/amq/templates/amq63-basic.json -------------------------------------------------------------------------------- /official/amq/templates/amq63-persistent-ssl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/amq/templates/amq63-persistent-ssl.json -------------------------------------------------------------------------------- /official/amq/templates/amq63-persistent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/amq/templates/amq63-persistent.json -------------------------------------------------------------------------------- /official/amq/templates/amq63-ssl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/amq/templates/amq63-ssl.json -------------------------------------------------------------------------------- /official/cakephp/templates/cakephp-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/cakephp/templates/cakephp-example.json -------------------------------------------------------------------------------- /official/dancer/templates/dancer-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/dancer/templates/dancer-example.json -------------------------------------------------------------------------------- /official/dancer/templates/dancer-mysql-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/dancer/templates/dancer-mysql-example.json -------------------------------------------------------------------------------- /official/datagrid/templates/cache-service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/datagrid/templates/cache-service.json -------------------------------------------------------------------------------- /official/datagrid/templates/datagrid-service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/datagrid/templates/datagrid-service.json -------------------------------------------------------------------------------- /official/django/templates/django-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/django/templates/django-example.json -------------------------------------------------------------------------------- /official/django/templates/django-psql-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/django/templates/django-psql-example.json -------------------------------------------------------------------------------- /official/dotnet/imagestreams/dotnet-aspnet-rhel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/dotnet/imagestreams/dotnet-aspnet-rhel.json -------------------------------------------------------------------------------- /official/dotnet/imagestreams/dotnet-rhel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/dotnet/imagestreams/dotnet-rhel.json -------------------------------------------------------------------------------- /official/eap/templates/eap-xp3-basic-s2i.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/eap/templates/eap-xp3-basic-s2i.json -------------------------------------------------------------------------------- /official/eap/templates/eap-xp4-basic-s2i.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/eap/templates/eap-xp4-basic-s2i.json -------------------------------------------------------------------------------- /official/eap/templates/eap74-basic-s2i.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/eap/templates/eap74-basic-s2i.json -------------------------------------------------------------------------------- /official/eap/templates/eap74-https-s2i.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/eap/templates/eap74-https-s2i.json -------------------------------------------------------------------------------- /official/eap/templates/eap74-sso-s2i.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/eap/templates/eap74-sso-s2i.json -------------------------------------------------------------------------------- /official/fis/imagestreams/apicurito-ui-rhel7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/fis/imagestreams/apicurito-ui-rhel7.json -------------------------------------------------------------------------------- /official/fis/imagestreams/fuse7-console-rhel7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/fis/imagestreams/fuse7-console-rhel7.json -------------------------------------------------------------------------------- /official/fis/templates/apicurito.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/fis/templates/apicurito.json -------------------------------------------------------------------------------- /official/fis/templates/fuse713-console.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/fis/templates/fuse713-console.json -------------------------------------------------------------------------------- /official/golang/imagestreams/golang-rhel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/golang/imagestreams/golang-rhel.json -------------------------------------------------------------------------------- /official/httpd/imagestreams/httpd-rhel-aarch64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/httpd/imagestreams/httpd-rhel-aarch64.json -------------------------------------------------------------------------------- /official/httpd/imagestreams/httpd-rhel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/httpd/imagestreams/httpd-rhel.json -------------------------------------------------------------------------------- /official/httpd/templates/httpd-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/httpd/templates/httpd-example.json -------------------------------------------------------------------------------- /official/java/imagestreams/java-rhel-aarch64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/java/imagestreams/java-rhel-aarch64.json -------------------------------------------------------------------------------- /official/java/imagestreams/java-rhel-ppc64le.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/java/imagestreams/java-rhel-ppc64le.json -------------------------------------------------------------------------------- /official/java/imagestreams/java-rhel-s390x.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/java/imagestreams/java-rhel-s390x.json -------------------------------------------------------------------------------- /official/java/imagestreams/java-rhel-x86_64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/java/imagestreams/java-rhel-x86_64.json -------------------------------------------------------------------------------- /official/java/imagestreams/java-runtime-ubi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/java/imagestreams/java-runtime-ubi.json -------------------------------------------------------------------------------- /official/java/templates/openjdk-web-basic-s2i.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/java/templates/openjdk-web-basic-s2i.json -------------------------------------------------------------------------------- /official/jenkins/imagestreams/jenkins-rhel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/jenkins/imagestreams/jenkins-rhel.json -------------------------------------------------------------------------------- /official/jenkins/templates/jenkins-ephemeral.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/jenkins/templates/jenkins-ephemeral.json -------------------------------------------------------------------------------- /official/jenkins/templates/jenkins-persistent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/jenkins/templates/jenkins-persistent.json -------------------------------------------------------------------------------- /official/mariadb/imagestreams/mariadb-rhel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/mariadb/imagestreams/mariadb-rhel.json -------------------------------------------------------------------------------- /official/mariadb/templates/mariadb-ephemeral.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/mariadb/templates/mariadb-ephemeral.json -------------------------------------------------------------------------------- /official/mariadb/templates/mariadb-persistent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/mariadb/templates/mariadb-persistent.json -------------------------------------------------------------------------------- /official/mysql/imagestreams/mysql-rhel-aarch64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/mysql/imagestreams/mysql-rhel-aarch64.json -------------------------------------------------------------------------------- /official/mysql/imagestreams/mysql-rhel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/mysql/imagestreams/mysql-rhel.json -------------------------------------------------------------------------------- /official/mysql/templates/mysql-ephemeral.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/mysql/templates/mysql-ephemeral.json -------------------------------------------------------------------------------- /official/mysql/templates/mysql-persistent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/mysql/templates/mysql-persistent.json -------------------------------------------------------------------------------- /official/nginx/imagestreams/nginx-rhel-aarch64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/nginx/imagestreams/nginx-rhel-aarch64.json -------------------------------------------------------------------------------- /official/nginx/imagestreams/nginx-rhel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/nginx/imagestreams/nginx-rhel.json -------------------------------------------------------------------------------- /official/nginx/templates/nginx-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/nginx/templates/nginx-example.json -------------------------------------------------------------------------------- /official/nodejs/imagestreams/nodejs-rhel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/nodejs/imagestreams/nodejs-rhel.json -------------------------------------------------------------------------------- /official/nodejs/templates/nodejs-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/nodejs/templates/nodejs-example.json -------------------------------------------------------------------------------- /official/nodejs/templates/react-web-app-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/nodejs/templates/react-web-app-example.json -------------------------------------------------------------------------------- /official/perl/imagestreams/perl-rhel-aarch64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/perl/imagestreams/perl-rhel-aarch64.json -------------------------------------------------------------------------------- /official/perl/imagestreams/perl-rhel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/perl/imagestreams/perl-rhel.json -------------------------------------------------------------------------------- /official/php/imagestreams/php-rhel-aarch64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/php/imagestreams/php-rhel-aarch64.json -------------------------------------------------------------------------------- /official/php/imagestreams/php-rhel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/php/imagestreams/php-rhel.json -------------------------------------------------------------------------------- /official/python/imagestreams/python-rhel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/python/imagestreams/python-rhel.json -------------------------------------------------------------------------------- /official/rails/templates/rails-pgsql-persistent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/rails/templates/rails-pgsql-persistent.json -------------------------------------------------------------------------------- /official/redis/imagestreams/redis-rhel-aarch64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/redis/imagestreams/redis-rhel-aarch64.json -------------------------------------------------------------------------------- /official/redis/imagestreams/redis-rhel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/redis/imagestreams/redis-rhel.json -------------------------------------------------------------------------------- /official/redis/templates/redis-ephemeral.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/redis/templates/redis-ephemeral.json -------------------------------------------------------------------------------- /official/redis/templates/redis-persistent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/redis/templates/redis-persistent.json -------------------------------------------------------------------------------- /official/ruby/imagestreams/ruby-rhel-aarch64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/ruby/imagestreams/ruby-rhel-aarch64.json -------------------------------------------------------------------------------- /official/ruby/imagestreams/ruby-rhel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/ruby/imagestreams/ruby-rhel.json -------------------------------------------------------------------------------- /official/sso/imagestreams/sso75-openshift-rhel8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/sso/imagestreams/sso75-openshift-rhel8.json -------------------------------------------------------------------------------- /official/sso/imagestreams/sso76-openshift-rhel8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/sso/imagestreams/sso76-openshift-rhel8.json -------------------------------------------------------------------------------- /official/sso/templates/sso75-https.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/sso/templates/sso75-https.json -------------------------------------------------------------------------------- /official/sso/templates/sso75-ocp4-x509-https.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/sso/templates/sso75-ocp4-x509-https.json -------------------------------------------------------------------------------- /official/sso/templates/sso75-postgresql.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/sso/templates/sso75-postgresql.json -------------------------------------------------------------------------------- /official/sso/templates/sso76-ocp4-https.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/sso/templates/sso76-ocp4-https.json -------------------------------------------------------------------------------- /official/sso/templates/sso76-ocp4-postgresql.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/sso/templates/sso76-ocp4-postgresql.json -------------------------------------------------------------------------------- /official/sso/templates/sso76-ocp4-x509-https.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/official/sso/templates/sso76-ocp4-x509-https.json -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/fsnotify/fsnotify/.editorconfig -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/.gitattributes: -------------------------------------------------------------------------------- 1 | go.sum linguist-generated 2 | -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/fsnotify/fsnotify/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/fsnotify/fsnotify/.mailmap -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/fsnotify/fsnotify/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/fsnotify/fsnotify/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/fsnotify/fsnotify/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/fsnotify/fsnotify/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/fsnotify/fsnotify/README.md -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/fen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/fsnotify/fsnotify/fen.go -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/fsnotify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/fsnotify/fsnotify/fsnotify.go -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/fsnotify/fsnotify/go.mod -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/fsnotify/fsnotify/go.sum -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/inotify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/fsnotify/fsnotify/inotify.go -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/kqueue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/fsnotify/fsnotify/kqueue.go -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/open_mode_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/fsnotify/fsnotify/open_mode_bsd.go -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/fsnotify/fsnotify/windows.go -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/ghodss/yaml/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/ghodss/yaml/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/ghodss/yaml/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/ghodss/yaml/README.md -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/ghodss/yaml/fields.go -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/ghodss/yaml/yaml.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/go-logr/logr/.golangci.yaml -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/go-logr/logr/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/go-logr/logr/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/go-logr/logr/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/go-logr/logr/README.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/discard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/go-logr/logr/discard.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/go-logr/logr/go.mod -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/logr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/go-logr/logr/logr.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/gogo/protobuf/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/gogo/protobuf/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/gogo/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/gogo/protobuf/proto/Makefile -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/clone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/gogo/protobuf/proto/clone.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/custom_gogo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/gogo/protobuf/proto/custom_gogo.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/gogo/protobuf/proto/decode.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/deprecated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/gogo/protobuf/proto/deprecated.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/discard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/gogo/protobuf/proto/discard.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/gogo/protobuf/proto/duration.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/gogo/protobuf/proto/encode.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/encode_gogo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/gogo/protobuf/proto/encode_gogo.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/equal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/gogo/protobuf/proto/equal.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/extensions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/gogo/protobuf/proto/extensions.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/gogo/protobuf/proto/lib.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/lib_gogo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/gogo/protobuf/proto/lib_gogo.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/message_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/gogo/protobuf/proto/message_set.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/properties.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/gogo/protobuf/proto/properties.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/skip_gogo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/gogo/protobuf/proto/skip_gogo.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/table_merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/gogo/protobuf/proto/table_merge.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/gogo/protobuf/proto/text.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/text_gogo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/gogo/protobuf/proto/text_gogo.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/text_parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/gogo/protobuf/proto/text_parser.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/timestamp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/gogo/protobuf/proto/timestamp.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/wrappers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/gogo/protobuf/proto/wrappers.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/sortkeys/sortkeys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/gogo/protobuf/sortkeys/sortkeys.go -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/google/gofuzz/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/google/gofuzz/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/google/gofuzz/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/google/gofuzz/README.md -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/google/gofuzz/doc.go -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/google/gofuzz/fuzz.go -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/google/gofuzz 2 | 3 | go 1.12 4 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/hashicorp/hcl/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/hashicorp/hcl/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/hashicorp/hcl/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/hashicorp/hcl/Makefile -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/hashicorp/hcl/README.md -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/hashicorp/hcl/appveyor.yml -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/decoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/hashicorp/hcl/decoder.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/hashicorp/hcl/go.mod -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/hashicorp/hcl/go.sum -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/hashicorp/hcl/hcl.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/ast/ast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/hashicorp/hcl/hcl/ast/ast.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/ast/walk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/hashicorp/hcl/hcl/ast/walk.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/parser/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/hashicorp/hcl/hcl/parser/error.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/parser/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/hashicorp/hcl/hcl/parser/parser.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/printer/nodes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/hashicorp/hcl/hcl/printer/nodes.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/strconv/quote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/hashicorp/hcl/hcl/strconv/quote.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/token/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/hashicorp/hcl/hcl/token/token.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/json/token/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/hashicorp/hcl/json/token/token.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/lex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/hashicorp/hcl/lex.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/hashicorp/hcl/parse.go -------------------------------------------------------------------------------- /vendor/github.com/inconshreveable/mousetrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/inconshreveable/mousetrap/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.codecov.yml: -------------------------------------------------------------------------------- 1 | ignore: 2 | - "output_tests/.*" 3 | 4 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /bug_test.go 3 | /coverage.txt 4 | /.idea 5 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/json-iterator/go/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/json-iterator/go/Gopkg.lock -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/json-iterator/go/Gopkg.toml -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/json-iterator/go/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/json-iterator/go/README.md -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/adapter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/json-iterator/go/adapter.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/json-iterator/go/any.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/json-iterator/go/any_array.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any_bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/json-iterator/go/any_bool.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any_float.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/json-iterator/go/any_float.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any_int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/json-iterator/go/any_int32.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any_int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/json-iterator/go/any_int64.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any_invalid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/json-iterator/go/any_invalid.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any_nil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/json-iterator/go/any_nil.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any_number.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/json-iterator/go/any_number.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any_object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/json-iterator/go/any_object.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any_str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/json-iterator/go/any_str.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any_uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/json-iterator/go/any_uint32.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any_uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/json-iterator/go/any_uint64.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/json-iterator/go/build.sh -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/json-iterator/go/config.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/json-iterator/go/go.mod -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/json-iterator/go/go.sum -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/json-iterator/go/iter.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/iter_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/json-iterator/go/iter_array.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/iter_float.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/json-iterator/go/iter_float.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/iter_int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/json-iterator/go/iter_int.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/iter_object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/json-iterator/go/iter_object.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/iter_skip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/json-iterator/go/iter_skip.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/iter_str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/json-iterator/go/iter_str.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/jsoniter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/json-iterator/go/jsoniter.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/json-iterator/go/pool.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/reflect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/json-iterator/go/reflect.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/reflect_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/json-iterator/go/reflect_array.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/reflect_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/json-iterator/go/reflect_map.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/reflect_native.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/json-iterator/go/reflect_native.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/reflect_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/json-iterator/go/reflect_slice.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/json-iterator/go/stream.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/stream_float.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/json-iterator/go/stream_float.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/stream_int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/json-iterator/go/stream_int.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/stream_str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/json-iterator/go/stream_str.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/json-iterator/go/test.sh -------------------------------------------------------------------------------- /vendor/github.com/magiconair/properties/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/magiconair/properties/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/magiconair/properties/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/magiconair/properties/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/magiconair/properties/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/magiconair/properties/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/magiconair/properties/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/magiconair/properties/LICENSE.md -------------------------------------------------------------------------------- /vendor/github.com/magiconair/properties/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/magiconair/properties/README.md -------------------------------------------------------------------------------- /vendor/github.com/magiconair/properties/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/magiconair/properties/decode.go -------------------------------------------------------------------------------- /vendor/github.com/magiconair/properties/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/magiconair/properties/doc.go -------------------------------------------------------------------------------- /vendor/github.com/magiconair/properties/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/magiconair/properties 2 | 3 | go 1.13 4 | -------------------------------------------------------------------------------- /vendor/github.com/magiconair/properties/integrate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/magiconair/properties/integrate.go -------------------------------------------------------------------------------- /vendor/github.com/magiconair/properties/lex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/magiconair/properties/lex.go -------------------------------------------------------------------------------- /vendor/github.com/magiconair/properties/load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/magiconair/properties/load.go -------------------------------------------------------------------------------- /vendor/github.com/magiconair/properties/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/magiconair/properties/parser.go -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/go-homedir/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/mitchellh/go-homedir/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/go-homedir/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/mitchellh/go-homedir/README.md -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/go-homedir/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/mitchellh/go-homedir 2 | -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/go-homedir/homedir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/mitchellh/go-homedir/homedir.go -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/mapstructure/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/mitchellh/mapstructure/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/mapstructure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/mitchellh/mapstructure/README.md -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/mapstructure/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/mitchellh/mapstructure/error.go -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/mapstructure/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/mitchellh/mapstructure 2 | 3 | go 1.14 4 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/.gitignore: -------------------------------------------------------------------------------- 1 | /coverage.txt 2 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/modern-go/concurrent/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/modern-go/concurrent/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/modern-go/concurrent/README.md -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/executor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/modern-go/concurrent/executor.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/modern-go/concurrent/log.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/modern-go/concurrent/test.sh -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /coverage.txt 3 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/modern-go/reflect2/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/modern-go/reflect2/Gopkg.lock -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/modern-go/reflect2/Gopkg.toml -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/modern-go/reflect2/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/modern-go/reflect2/README.md -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/modern-go/reflect2 2 | 3 | go 1.12 4 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/go_above_118.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/modern-go/reflect2/go_above_118.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/go_above_19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/modern-go/reflect2/go_above_19.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/go_below_118.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/modern-go/reflect2/go_below_118.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/reflect2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/modern-go/reflect2/reflect2.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/reflect2_amd64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_386.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_amd64p32.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_arm.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_arm64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_mips64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_mipsx.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_ppc64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_s390x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/safe_field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/modern-go/reflect2/safe_field.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/safe_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/modern-go/reflect2/safe_map.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/safe_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/modern-go/reflect2/safe_slice.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/safe_struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/modern-go/reflect2/safe_struct.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/safe_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/modern-go/reflect2/safe_type.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/type_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/modern-go/reflect2/type_map.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/unsafe_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/modern-go/reflect2/unsafe_array.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/unsafe_eface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/modern-go/reflect2/unsafe_eface.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/unsafe_field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/modern-go/reflect2/unsafe_field.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/unsafe_iface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/modern-go/reflect2/unsafe_iface.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/unsafe_link.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/modern-go/reflect2/unsafe_link.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/unsafe_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/modern-go/reflect2/unsafe_map.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/unsafe_ptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/modern-go/reflect2/unsafe_ptr.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/unsafe_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/modern-go/reflect2/unsafe_slice.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/unsafe_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/modern-go/reflect2/unsafe_type.go -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/openshift/api/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/image/v1/consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/openshift/api/image/v1/consts.go -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/image/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/openshift/api/image/v1/doc.go -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/image/v1/legacy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/openshift/api/image/v1/legacy.go -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/image/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/openshift/api/image/v1/register.go -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/image/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/openshift/api/image/v1/types.go -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/template/v1/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/openshift/api/template/v1/codec.go -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/template/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/openshift/api/template/v1/doc.go -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/template/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/openshift/api/template/v1/types.go -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/pelletier/go-toml/.dockerignore -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/pelletier/go-toml/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/pelletier/go-toml/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/pelletier/go-toml/Dockerfile -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/pelletier/go-toml/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/pelletier/go-toml/Makefile -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/pelletier/go-toml/README.md -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/pelletier/go-toml/benchmark.sh -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/pelletier/go-toml/doc.go -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/example.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/pelletier/go-toml/example.toml -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/pelletier/go-toml/fuzz.go -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/fuzz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/pelletier/go-toml/fuzz.sh -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/pelletier/go-toml 2 | 3 | go 1.12 4 | -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/keysparsing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/pelletier/go-toml/keysparsing.go -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/lexer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/pelletier/go-toml/lexer.go -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/localtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/pelletier/go-toml/localtime.go -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/marshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/pelletier/go-toml/marshal.go -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/pelletier/go-toml/parser.go -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/position.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/pelletier/go-toml/position.go -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/pelletier/go-toml/token.go -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/toml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/pelletier/go-toml/toml.go -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/tomlpub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/pelletier/go-toml/tomlpub.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/afero/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/afero/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/afero/LICENSE.txt -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/afero/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/afero.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/afero/afero.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/afero/appveyor.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/basepath.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/afero/basepath.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/cacheOnReadFs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/afero/cacheOnReadFs.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/const_bsds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/afero/const_bsds.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/const_win_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/afero/const_win_unix.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/copyOnWriteFs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/afero/copyOnWriteFs.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/afero/go.mod -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/afero/go.sum -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/httpFs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/afero/httpFs.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/iofs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/afero/iofs.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/ioutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/afero/ioutil.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/lstater.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/afero/lstater.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/afero/match.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/mem/dir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/afero/mem/dir.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/mem/dirmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/afero/mem/dirmap.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/mem/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/afero/mem/file.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/memmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/afero/memmap.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/os.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/afero/os.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/afero/path.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/readonlyfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/afero/readonlyfs.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/regexpfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/afero/regexpfs.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/symlink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/afero/symlink.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/unionFile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/afero/unionFile.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/afero/util.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/cast/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/cast/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/cast/Makefile -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/cast/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/cast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/cast/cast.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/caste.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/cast/caste.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/cast/go.mod -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/cast/go.sum -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/cobra/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/cobra/.golangci.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/cobra/.mailmap -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/cobra/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/cobra/CONDUCT.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/cobra/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/cobra/LICENSE.txt -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/cobra/MAINTAINERS -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/cobra/Makefile -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/cobra/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/cobra/args.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/bash_completions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/cobra/bash_completions.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/bash_completions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/cobra/bash_completions.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/bash_completionsV2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/cobra/bash_completionsV2.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/cobra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/cobra/cobra.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/cobra/command.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/command_notwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/cobra/command_notwin.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/command_win.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/cobra/command_win.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/completions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/cobra/completions.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/fish_completions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/cobra/fish_completions.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/fish_completions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/cobra/fish_completions.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/cobra/go.mod -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/cobra/go.sum -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/shell_completions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/cobra/shell_completions.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/shell_completions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/cobra/shell_completions.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/user_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/cobra/user_guide.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/zsh_completions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/cobra/zsh_completions.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/zsh_completions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/cobra/zsh_completions.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/jwalterweatherman/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/jwalterweatherman/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/spf13/jwalterweatherman/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/jwalterweatherman/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/jwalterweatherman/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/jwalterweatherman/go.mod -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/pflag/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/pflag/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/pflag/bool.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/pflag/bool_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/pflag/bytes.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/pflag/count.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/pflag/duration.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/duration_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/pflag/duration_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/pflag/flag.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/pflag/float32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float32_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/pflag/float32_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/pflag/float64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float64_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/pflag/float64_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/spf13/pflag 2 | 3 | go 1.12 4 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/golangflag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/pflag/golangflag.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/pflag/int16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/pflag/int32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int32_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/pflag/int32_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/pflag/int64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int64_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/pflag/int64_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/pflag/int8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/pflag/int_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/pflag/ip_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipmask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/pflag/ipmask.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/pflag/ipnet.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/pflag/string.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/pflag/string_array.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/pflag/string_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string_to_int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/pflag/string_to_int.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string_to_int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/pflag/string_to_int64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string_to_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/pflag/string_to_string.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/pflag/uint.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/pflag/uint16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/pflag/uint32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/pflag/uint64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/pflag/uint8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/pflag/uint_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/viper/.editorconfig -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/viper/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/viper/.golangci.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/viper/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/viper/Makefile -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/viper/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/TROUBLESHOOTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/viper/TROUBLESHOOTING.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/viper/flags.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/viper/fs.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/viper/go.mod -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/viper/go.sum -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/viper/logger.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/viper/util.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/viper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/viper/viper.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/viper_go1_15.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/viper/viper_go1_15.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/viper_go1_16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/viper/viper_go1_16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/watch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/viper/watch.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/watch_wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/spf13/viper/watch_wasm.go -------------------------------------------------------------------------------- /vendor/github.com/subosito/gotenv/.env: -------------------------------------------------------------------------------- 1 | HELLO=world 2 | -------------------------------------------------------------------------------- /vendor/github.com/subosito/gotenv/.env.invalid: -------------------------------------------------------------------------------- 1 | lol$wut 2 | -------------------------------------------------------------------------------- /vendor/github.com/subosito/gotenv/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | *.out 3 | annotate.json 4 | -------------------------------------------------------------------------------- /vendor/github.com/subosito/gotenv/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/subosito/gotenv/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/subosito/gotenv/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/subosito/gotenv/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/subosito/gotenv/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/subosito/gotenv/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/subosito/gotenv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/subosito/gotenv/README.md -------------------------------------------------------------------------------- /vendor/github.com/subosito/gotenv/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/subosito/gotenv/appveyor.yml -------------------------------------------------------------------------------- /vendor/github.com/subosito/gotenv/gotenv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/github.com/subosito/gotenv/gotenv.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/net/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http/httpguts/guts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/net/http/httpguts/guts.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http/httpguts/httplex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/net/http/httpguts/httplex.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/net/http2/Dockerfile -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/ascii.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/net/http2/ascii.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/ciphers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/net/http2/ciphers.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/client_conn_pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/net/http2/client_conn_pool.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/databuffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/net/http2/databuffer.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/net/http2/errors.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go111.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/net/http2/go111.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go115.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/net/http2/go115.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/gotrack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/net/http2/gotrack.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/headermap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/net/http2/headermap.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/hpack/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/net/http2/hpack/encode.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/hpack/hpack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/net/http2/hpack/hpack.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/hpack/huffman.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/net/http2/hpack/huffman.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/hpack/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/net/http2/hpack/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/not_go111.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/net/http2/not_go111.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/not_go115.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/net/http2/not_go115.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/net/http2/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/net/http2/transport.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/writesched.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/net/http2/writesched.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/writesched_random.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/net/http2/writesched_random.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/idna10.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/net/idna/idna10.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/idna9.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/net/idna/idna9.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/punycode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/net/idna/punycode.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/tables10.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/net/idna/tables10.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/tables11.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/net/idna/tables11.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/tables12.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/net/idna/tables12.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/tables13.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/net/idna/tables13.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/tables9.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/net/idna/tables9.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/net/idna/trieval.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/affinity_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/affinity_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/aliases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_aix_ppc64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/asm_aix_ppc64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_bsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/asm_bsd_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_bsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/asm_bsd_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_bsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/asm_bsd_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_bsd_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/asm_bsd_arm64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/asm_linux_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/asm_linux_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/asm_linux_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/asm_linux_arm64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_mips64x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/asm_linux_mips64x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_mipsx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/asm_linux_mipsx.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_riscv64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/asm_linux_riscv64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/asm_linux_s390x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_openbsd_mips64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/asm_openbsd_mips64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_solaris_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/asm_solaris_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_zos_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/asm_zos_s390x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/bluetooth_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/bluetooth_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/cap_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/cap_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/constants.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/dev_aix_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_aix_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/dev_aix_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/dev_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/dev_dragonfly.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/dev_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/dev_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/dev_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/dev_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/dev_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/endian_big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/endian_big.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/endian_little.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/endian_little.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/epoll_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/epoll_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/errors_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/errors_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/errors_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/errors_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/fcntl_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl_linux_32bit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/fcntl_linux_32bit.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fdset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/fdset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fstatfs_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/fstatfs_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ifreq_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/ifreq_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ioctl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/ioctl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ioctl_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/ioctl_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ioctl_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/ioctl_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/pagesize_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/pagesize_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/pledge_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/pledge_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ptrace_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/ptrace_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ptrace_ios.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/ptrace_ios.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sockcmsg_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/sockcmsg_dragonfly.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sockcmsg_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/sockcmsg_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sockcmsg_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/sockcmsg_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/syscall_aix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/syscall_aix_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_aix_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/syscall_aix_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/syscall_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/syscall_dragonfly.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/syscall_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_illumos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/syscall_illumos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/syscall_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_gc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/syscall_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/syscall_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/syscall_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/syscall_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/syscall_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_unix_gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/syscall_unix_gc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_zos_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sysvshm_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/sysvshm_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sysvshm_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/sysvshm_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sysvshm_unix_other.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/sysvshm_unix_other.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/timestruct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/timestruct.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/unveil_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/unveil_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/xattr_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/xattr_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zptrace_x86_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/zptrace_x86_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_aix_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/ztypes_aix_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_openbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/ztypes_openbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_zos_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/sys/unix/ztypes_zos_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/text/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/text/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/transform/transform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/text/transform/transform.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/bidi/bidi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/text/unicode/bidi/bidi.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/bidi/bracket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/text/unicode/bidi/bracket.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/bidi/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/text/unicode/bidi/core.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/bidi/prop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/text/unicode/bidi/prop.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/bidi/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/text/unicode/bidi/trieval.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/norm/forminfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/text/unicode/norm/forminfo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/norm/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/text/unicode/norm/input.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/norm/iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/text/unicode/norm/iter.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/norm/normalize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/text/unicode/norm/normalize.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/norm/transform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/text/unicode/norm/transform.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/norm/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/golang.org/x/text/unicode/norm/trie.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/gopkg.in/inf.v0/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/dec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/gopkg.in/inf.v0/dec.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/rounder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/gopkg.in/inf.v0/rounder.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/gopkg.in/ini.v1/.gitignore -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/gopkg.in/ini.v1/.golangci.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/gopkg.in/ini.v1/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/gopkg.in/ini.v1/Makefile -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/gopkg.in/ini.v1/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/gopkg.in/ini.v1/codecov.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/data_source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/gopkg.in/ini.v1/data_source.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/deprecated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/gopkg.in/ini.v1/deprecated.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/gopkg.in/ini.v1/error.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/gopkg.in/ini.v1/file.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/gopkg.in/ini.v1/helper.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/ini.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/gopkg.in/ini.v1/ini.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/gopkg.in/ini.v1/key.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/gopkg.in/ini.v1/parser.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/section.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/gopkg.in/ini.v1/section.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/gopkg.in/ini.v1/struct.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE.libyaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/gopkg.in/yaml.v2/LICENSE.libyaml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/gopkg.in/yaml.v2/go.mod -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/gopkg.in/yaml.v2/yamlprivateh.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/api/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/api/core/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/api/core/v1/generated.pb.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/generated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/api/core/v1/generated.proto -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/objectreference.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/api/core/v1/objectreference.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/api/core/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/api/core/v1/resource.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/taint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/api/core/v1/taint.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/toleration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/api/core/v1/toleration.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/api/core/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/well_known_labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/api/core/v1/well_known_labels.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/well_known_taints.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/api/core/v1/well_known_taints.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/api/core/v1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/apimachinery/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/api/resource/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/apimachinery/pkg/api/resource/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/apis/meta/v1/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/apimachinery/pkg/apis/meta/v1/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/apis/meta/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/apimachinery/pkg/apis/meta/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/conversion/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/apimachinery/pkg/conversion/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/fields/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/apimachinery/pkg/fields/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/fields/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/apimachinery/pkg/fields/fields.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/fields/selector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/apimachinery/pkg/fields/selector.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/labels/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/apimachinery/pkg/labels/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/labels/labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/apimachinery/pkg/labels/labels.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/labels/selector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/apimachinery/pkg/labels/selector.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/runtime/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/apimachinery/pkg/runtime/codec.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/runtime/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/apimachinery/pkg/runtime/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/runtime/embedded.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/apimachinery/pkg/runtime/embedded.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/runtime/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/apimachinery/pkg/runtime/error.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/runtime/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/apimachinery/pkg/runtime/helper.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/runtime/mapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/apimachinery/pkg/runtime/mapper.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/runtime/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/apimachinery/pkg/runtime/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/runtime/scheme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/apimachinery/pkg/runtime/scheme.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/runtime/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/apimachinery/pkg/runtime/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/types/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/apimachinery/pkg/types/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/types/nodename.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/apimachinery/pkg/types/nodename.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/types/patch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/apimachinery/pkg/types/patch.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/types/uid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/apimachinery/pkg/types/uid.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/errors/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/apimachinery/pkg/util/errors/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/json/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/apimachinery/pkg/util/json/json.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/net/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/apimachinery/pkg/util/net/http.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/net/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/apimachinery/pkg/util/net/util.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/sets/byte.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/apimachinery/pkg/util/sets/byte.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/sets/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/apimachinery/pkg/util/sets/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/sets/empty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/apimachinery/pkg/util/sets/empty.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/sets/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/apimachinery/pkg/util/sets/int.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/sets/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/apimachinery/pkg/util/sets/int32.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/sets/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/apimachinery/pkg/util/sets/int64.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/sets/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/apimachinery/pkg/util/sets/string.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/watch/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/apimachinery/pkg/watch/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/watch/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/apimachinery/pkg/watch/filter.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/watch/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/apimachinery/pkg/watch/mux.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/watch/watch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/apimachinery/pkg/watch/watch.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/klog/.travis.yml -------------------------------------------------------------------------------- /vendor/k8s.io/klog/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/klog/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/klog/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/klog/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/klog/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/klog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/klog/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/klog/RELEASE.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/SECURITY_CONTACTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/klog/SECURITY_CONTACTS -------------------------------------------------------------------------------- /vendor/k8s.io/klog/code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/klog/code-of-conduct.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/klog/go.mod -------------------------------------------------------------------------------- /vendor/k8s.io/klog/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/klog/go.sum -------------------------------------------------------------------------------- /vendor/k8s.io/klog/klog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/klog/klog.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/klog_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/klog/klog_file.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/klog/v2/.gitignore -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/klog/v2/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/klog/v2/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/klog/v2/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/klog/v2/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/klog/v2/RELEASE.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/klog/v2/SECURITY.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/SECURITY_CONTACTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/klog/v2/SECURITY_CONTACTS -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/klog/v2/code-of-conduct.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/contextual.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/klog/v2/contextual.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/exit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/klog/v2/exit.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/klog/v2/go.mod -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/klog/v2/go.sum -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/imports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/klog/v2/imports.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/internal/buffer/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/klog/v2/internal/buffer/buffer.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/internal/clock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/klog/v2/internal/clock/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/internal/clock/clock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/klog/v2/internal/clock/clock.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/k8s_references.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/klog/v2/k8s_references.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/klog/v2/klog.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klog_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/klog/v2/klog_file.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klog_file_others.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/klog/v2/klog_file_others.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klog_file_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/klog/v2/klog_file_windows.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klogr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/k8s.io/klog/v2/klogr.go -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/library/HEAD/vendor/modules.txt --------------------------------------------------------------------------------