├── .bowerrc ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jshintrc ├── .release ├── .s2i └── bin │ ├── assemble │ └── run ├── .travis.yml ├── Gruntfile.js ├── LICENSE ├── Makefile ├── OWNERS ├── README.md ├── app ├── .buildignore ├── 404.html ├── components │ ├── alerts │ │ ├── alerts.component.js │ │ ├── alerts.component.spec.js │ │ └── alerts.html │ ├── istag-select │ │ ├── istag-select.component.js │ │ └── istag-select.html │ └── osc-webhook-triggers │ │ ├── osc-webhook-triggers.component.js │ │ └── osc-webhook-triggers.html ├── config.js ├── images │ ├── apple-touch-icon-precomposed.png │ ├── console-sprite.png │ ├── favicon.ico │ ├── favicon.png │ ├── logo-OCP-console-hdr-stacked.svg │ ├── logo-OCP-console-hdr-thin.svg │ ├── logo-okd.svg │ ├── logo-origin-thin.svg │ ├── logo-origin.png │ ├── logo-origin.svg │ ├── logos │ │ ├── 3scale.svg │ │ ├── aerogear.svg │ │ ├── amq.svg │ │ ├── angularjs.svg │ │ ├── ansible.svg │ │ ├── apache.svg │ │ ├── beaker.svg │ │ ├── capedwarf.svg │ │ ├── cassandra.svg │ │ ├── clojure.svg │ │ ├── codeigniter.svg │ │ ├── cordova.png │ │ ├── datagrid.svg │ │ ├── datavirt.svg │ │ ├── debian.svg │ │ ├── decisionserver.svg │ │ ├── django.svg │ │ ├── dotnet.svg │ │ ├── drupal.svg │ │ ├── eap.svg │ │ ├── elastic.svg │ │ ├── erlang.svg │ │ ├── fedora.svg │ │ ├── freebsd.svg │ │ ├── git.svg │ │ ├── github.svg │ │ ├── gitlab.svg │ │ ├── glassfish.svg │ │ ├── go-gopher.svg │ │ ├── grails.svg │ │ ├── hadoop.svg │ │ ├── haproxy.svg │ │ ├── infinispan.svg │ │ ├── jboss.svg │ │ ├── jenkins.svg │ │ ├── jetty.svg │ │ ├── joomla.svg │ │ ├── jruby.svg │ │ ├── js.svg │ │ ├── kubevirt.svg │ │ ├── laravel.svg │ │ ├── load-balancer.svg │ │ ├── mariadb.svg │ │ ├── mediawiki.svg │ │ ├── memcached.svg │ │ ├── mongodb.svg │ │ ├── mssql.svg │ │ ├── mysql-database.svg │ │ ├── nginx.svg │ │ ├── nodejs.svg │ │ ├── openjdk.svg │ │ ├── openliberty.svg │ │ ├── openshift.svg │ │ ├── openstack.svg │ │ ├── other-linux.svg │ │ ├── other-unknown.svg │ │ ├── perl.svg │ │ ├── phalcon.svg │ │ ├── php.svg │ │ ├── play.svg │ │ ├── postgresql.svg │ │ ├── processserver.svg │ │ ├── python.svg │ │ ├── rabbitmq.svg │ │ ├── rails.svg │ │ ├── redis.svg │ │ ├── rh-integration.svg │ │ ├── rh-tomcat.svg │ │ ├── ruby.svg │ │ ├── scala.svg │ │ ├── shadowman.svg │ │ ├── spring.svg │ │ ├── sso.svg │ │ ├── stackoverflow.svg │ │ ├── suse.svg │ │ ├── symfony.svg │ │ ├── tomcat.svg │ │ ├── ubuntu.svg │ │ ├── wildfly.svg │ │ ├── windows.svg │ │ ├── wordpress.svg │ │ ├── xamarin.svg │ │ └── zend.svg │ ├── mask-icon.svg │ ├── mstile-144x144.png │ ├── openshift-logo.svg │ ├── openshift-logo222.png │ ├── redhat.png │ ├── redhat.svg │ └── sprite-vert.png ├── index.html ├── robots.txt ├── scripts │ ├── app.js │ ├── constants.js │ ├── controllers │ │ ├── about.js │ │ ├── addConfigVolume.js │ │ ├── attachPVC.js │ │ ├── build.js │ │ ├── buildConfig.js │ │ ├── builds.js │ │ ├── commandLine.js │ │ ├── configMap.js │ │ ├── configMaps.js │ │ ├── create.js │ │ ├── create │ │ │ ├── browseCategory.js │ │ │ ├── createFromImage.js │ │ │ └── nextSteps.js │ │ ├── createConfigMap.js │ │ ├── createFromURL.js │ │ ├── createPersistentVolumeClaim.js │ │ ├── createProject.js │ │ ├── createRoute.js │ │ ├── createSecret.js │ │ ├── deployment.js │ │ ├── deploymentConfig.js │ │ ├── deployments.js │ │ ├── edit │ │ │ ├── autoscaler.js │ │ │ ├── buildConfig.js │ │ │ ├── configMap.js │ │ │ ├── deploymentConfig.js │ │ │ ├── healthChecks.js │ │ │ ├── project.js │ │ │ ├── route.js │ │ │ └── yaml.js │ │ ├── events.js │ │ ├── image.js │ │ ├── images.js │ │ ├── imagestream.js │ │ ├── labels.js │ │ ├── landingPage.js │ │ ├── membership.js │ │ ├── modals │ │ │ ├── aboutComputeUnitsModal.js │ │ │ ├── confirmModal.js │ │ │ ├── confirmReplaceModal.js │ │ │ ├── confirmSaveLog.js │ │ │ ├── confirmScale.js │ │ │ ├── createSecretModal.js │ │ │ ├── debugTerminal.js │ │ │ ├── deleteModal.js │ │ │ ├── editPvcModal.js │ │ │ ├── jenkinsfileExamplesModal.js │ │ │ ├── linkService.js │ │ │ ├── logoutModal.js │ │ │ ├── processOrSaveTemplateModal.js │ │ │ └── setHomePageModal.js │ │ ├── monitoring.js │ │ ├── newfromtemplate.js │ │ ├── otherResources.js │ │ ├── overview.js │ │ ├── persistentVolumeClaim.js │ │ ├── pipelines.js │ │ ├── pod.js │ │ ├── pods.js │ │ ├── projectBrowseCatalog.js │ │ ├── projects.js │ │ ├── quota.js │ │ ├── replicaSet.js │ │ ├── route.js │ │ ├── routes.js │ │ ├── secret.js │ │ ├── secrets.js │ │ ├── service.js │ │ ├── serviceInstance.js │ │ ├── serviceInstances.js │ │ ├── services.js │ │ ├── setLimits.js │ │ ├── statefulSet.js │ │ ├── statefulSets.js │ │ ├── storage.js │ │ ├── tasks.js │ │ └── util │ │ │ ├── error.js │ │ │ ├── logout.js │ │ │ └── oauth.js │ ├── directives │ │ ├── actionChip.js │ │ ├── addConfigToApplication.js │ │ ├── affix.js │ │ ├── bindService.js │ │ ├── buildClose.js │ │ ├── buildCounts.js │ │ ├── buildHooks.js │ │ ├── buildPipeline.js │ │ ├── buildStatus.js │ │ ├── buildTrendsChart.js │ │ ├── catalog.js │ │ ├── catalog │ │ │ ├── catalogImage.js │ │ │ ├── catalogTemplate.js │ │ │ └── categoryContent.js │ │ ├── confirmOnExit.js │ │ ├── create │ │ │ └── nextSteps.js │ │ ├── createSecret.js │ │ ├── date.js │ │ ├── deleteLink.js │ │ ├── deployImage.js │ │ ├── deployImageDialog.js │ │ ├── deploymentDonut.js │ │ ├── deploymentMetrics.js │ │ ├── dropdownItem.js │ │ ├── editCommand.js │ │ ├── editConfigMapOrSecret.js │ │ ├── editEnvironmentFrom.js │ │ ├── editEnvironmentVariables.js │ │ ├── editProbe.js │ │ ├── editPvc.js │ │ ├── editRequestLimit.js │ │ ├── ellipsisPulser.js │ │ ├── events.js │ │ ├── eventsBadge.js │ │ ├── eventsSidebar.js │ │ ├── fromFile.js │ │ ├── fromFileDialog.js │ │ ├── imageNames.js │ │ ├── initContainersSummary.js │ │ ├── keyValueEditor.js │ │ ├── labels.js │ │ ├── lifecycleHook.js │ │ ├── logViewer.js │ │ ├── metricsSummary.js │ │ ├── miniLog.js │ │ ├── nav.js │ │ ├── notificationIcon.js │ │ ├── notifications │ │ │ ├── notificationCounter.js │ │ │ └── notificationDrawerWrapper.js │ │ ├── optionalLink.js │ │ ├── oscAutoscaling.js │ │ ├── oscFileInput.js │ │ ├── oscFormSection.js │ │ ├── oscGitLink.js │ │ ├── oscImageSummary.js │ │ ├── oscPersistentVolumeClaim.js │ │ ├── oscRouting.js │ │ ├── oscSecrets.js │ │ ├── oscSourceSecrets.js │ │ ├── overview │ │ │ ├── builds.js │ │ │ ├── listRow.js │ │ │ ├── mobileClientRow.js │ │ │ ├── networking.js │ │ │ ├── pipelines.js │ │ │ ├── serviceBindings.js │ │ │ ├── serviceInstanceRow.js │ │ │ └── virtualMachineRow.js │ │ ├── parseError.js │ │ ├── pauseRolloutsCheckbox.js │ │ ├── podDonut.js │ │ ├── podMetrics.js │ │ ├── popups.js │ │ ├── processTemplate.js │ │ ├── processTemplateDialog.js │ │ ├── quotaUsageChart.js │ │ ├── replicas.js │ │ ├── resourceServiceBindings.js │ │ ├── resources.js │ │ ├── routeServiceBarChart.js │ │ ├── routeServicePie.js │ │ ├── selectContainers.js │ │ ├── selector.js │ │ ├── serviceBinding.js │ │ ├── serviceInstanceBindings.js │ │ ├── statusIcon.js │ │ ├── templateopt.js │ │ ├── uiAceYaml.js │ │ ├── unbindService.js │ │ └── util.js │ ├── extensions │ │ ├── javalink │ │ │ └── javaLink.js │ │ └── nav │ │ │ ├── dropdownMobile.js │ │ │ ├── helpDropdown.js │ │ │ └── userDropdown.js │ ├── filters │ │ ├── canI.js │ │ ├── date.js │ │ ├── resources.js │ │ └── util.js │ ├── services │ │ ├── aggregatedLoggingService.js │ │ ├── applicationGenerator.js │ │ ├── apps.js │ │ ├── breadcrumbs.js │ │ ├── browserStore.js │ │ ├── builds.js │ │ ├── catalog.js │ │ ├── charts.js │ │ ├── cliHelp.js │ │ ├── containerWebSocket.js │ │ ├── convert.js │ │ ├── deployments.js │ │ ├── discovery.js │ │ ├── environment.js │ │ ├── events.js │ │ ├── fullscreen.js │ │ ├── homePagePreference.js │ │ ├── hpa.js │ │ ├── imageStreamResolver.js │ │ ├── images.js │ │ ├── imagestreams.js │ │ ├── keyValueEditorProvider.js │ │ ├── keyValueEditorUtils.js │ │ ├── labels.js │ │ ├── limits.js │ │ ├── listRowUtils.js │ │ ├── logLinks.js │ │ ├── membership │ │ │ ├── membership.js │ │ │ ├── roleBindings.js │ │ │ └── roles.js │ │ ├── metrics.js │ │ ├── metricsCharts.js │ │ ├── modals.js │ │ ├── nameGenerator.js │ │ ├── navigate.js │ │ ├── ownerReferences.js │ │ ├── pods.js │ │ ├── quota.js │ │ ├── resourceAlerts.js │ │ ├── routes.js │ │ ├── secrets.js │ │ ├── securityCheck.js │ │ ├── serviceInstances.js │ │ ├── services.js │ │ ├── shims │ │ │ └── hawtioExtension.js │ │ ├── storage.js │ │ ├── tasks.js │ │ ├── templates.js │ │ └── util.js │ └── templates.js ├── styles │ ├── _action-chip.less │ ├── _add-config-to-application.less │ ├── _application-launcher.less │ ├── _builds.less │ ├── _buttons.less │ ├── _cards.less │ ├── _catalog.less │ ├── _component-animations.less │ ├── _components.less │ ├── _container-terminal.less │ ├── _contextselector.less │ ├── _core.less │ ├── _data-toolbar.less │ ├── _editor.less │ ├── _ellipsis.less │ ├── _forms.less │ ├── _instances.less │ ├── _kve.less │ ├── _layouts.less │ ├── _list-pf.less │ ├── _list-view.less │ ├── _log.less │ ├── _membership.less │ ├── _mixins.less │ ├── _monitoring.less │ ├── _navbar-vertical.less │ ├── _notifications.less │ ├── _overlay-forms.less │ ├── _overview.less │ ├── _patternfly-additions.less │ ├── _pipeline.less │ ├── _project-bar.less │ ├── _projects.less │ ├── _responsive-utilities.less │ ├── _scroll-shadows-horizontal.less │ ├── _scrollbars.less │ ├── _secrets.less │ ├── _set-home-page.less │ ├── _settings.less │ ├── _sidebar-right.less │ ├── _spacers.less │ ├── _system-status.less │ ├── _tables.less │ ├── _tile.less │ ├── _tooltip.less │ ├── _typography.less │ ├── _utils.less │ ├── _variables.less │ ├── _vertical-nav.less │ ├── _virtual-machine-row.less │ ├── _wizard.less │ ├── fonts │ │ └── openshift-logos-icon │ │ │ └── README.md │ └── main.less └── views │ ├── _build-trends-chart.html │ ├── _cannot-create-project.html │ ├── _compute-resource.html │ ├── _config-file-params.html │ ├── _container-statuses.html │ ├── _edit-request-limit.html │ ├── _image-names.html │ ├── _init-containers-summary.html │ ├── _parse-error.html │ ├── _pod-template-container.html │ ├── _pod-template.html │ ├── _quota-usage-chart.html │ ├── _request-access.html │ ├── _sidebar.html │ ├── _templateopt.html │ ├── _volume-claim-templates.html │ ├── _volumes.html │ ├── _webhook-trigger-cause.html │ ├── about.html │ ├── add-config-volume.html │ ├── attach-pvc.html │ ├── browse │ ├── _build-details.html │ ├── _pod-details.html │ ├── _replica-set-actions.html │ ├── _replica-set-details.html │ ├── _replication-controller-actions.html │ ├── build-config.html │ ├── build.html │ ├── config-map.html │ ├── config-maps.html │ ├── deployment-config.html │ ├── deployment.html │ ├── image.html │ ├── imagestream.html │ ├── persistent-volume-claim.html │ ├── pod.html │ ├── replica-set.html │ ├── route.html │ ├── routes.html │ ├── secret.html │ ├── service-instance.html │ ├── service.html │ ├── stateful-set.html │ └── stateful-sets.html │ ├── builds.html │ ├── catalog │ ├── _image.html │ ├── _template.html │ ├── catalog.html │ └── category-content.html │ ├── command-line.html │ ├── create-config-map.html │ ├── create-from-url.html │ ├── create-persistent-volume-claim.html │ ├── create-project.html │ ├── create-route.html │ ├── create-secret.html │ ├── create.html │ ├── create │ ├── category.html │ ├── fromimage.html │ └── next-steps.html │ ├── deployments.html │ ├── directives │ ├── _build-close.html │ ├── _build-pipeline-collapsed.html │ ├── _build-pipeline-expanded.html │ ├── _build-pipeline-links.html │ ├── _click-to-reveal.html │ ├── _copy-to-clipboard.html │ ├── _copy-webhook-trigger.html │ ├── _custom-icon.html │ ├── _edit-command.html │ ├── _edit-probe.html │ ├── _ellipsis-loader.html │ ├── _ellipsis-pulser.html │ ├── _probe.html │ ├── _project-filter.html │ ├── _service-binding.html │ ├── _status-icon.html │ ├── _warnings-popover.html │ ├── action-chip.html │ ├── add-config-to-application.html │ ├── annotations.html │ ├── bind-service.html │ ├── bind-service │ │ ├── bind-parameters.html │ │ ├── bind-service-form.html │ │ ├── delete-binding-result.html │ │ ├── delete-binding-select-form.html │ │ └── results.html │ ├── breadcrumbs.html │ ├── build-hooks.html │ ├── build-pipeline.html │ ├── build-status.html │ ├── create-secret.html │ ├── delete-button.html │ ├── delete-link.html │ ├── deploy-image-dialog.html │ ├── deploy-image.html │ ├── deployment-donut.html │ ├── deployment-metrics.html │ ├── edit-config-map-or-secret.html │ ├── edit-environment-from.html │ ├── edit-environment-variables.html │ ├── edit-lifecycle-hook.html │ ├── events-badge.html │ ├── events-sidebar.html │ ├── events.html │ ├── from-file-dialog.html │ ├── from-file.html │ ├── header │ │ ├── _navbar-utility-mobile.html │ │ ├── _navbar-utility.html │ │ └── header.html │ ├── hpa.html │ ├── key-value-editor.html │ ├── label-editor.html │ ├── labels.html │ ├── lifecycle-hook.html │ ├── logs │ │ ├── _log-raw.html │ │ └── _log-viewer.html │ ├── metrics-compact.html │ ├── next-steps.html │ ├── notifications │ │ ├── header.html │ │ ├── notification-body.html │ │ ├── notification-counter.html │ │ └── notification-drawer-wrapper.html │ ├── osc-autoscaling.html │ ├── osc-file-input.html │ ├── osc-form-section.html │ ├── osc-image-summary.html │ ├── osc-persistent-volume-claim.html │ ├── osc-routing-service.html │ ├── osc-routing.html │ ├── osc-secrets.html │ ├── osc-source-secrets.html │ ├── pause-rollouts-checkbox.html │ ├── pipeline-status.html │ ├── pod-donut.html │ ├── pod-metrics.html │ ├── pods-table.html │ ├── process-template-dialog.html │ ├── process-template-dialog │ │ ├── process-template-config.html │ │ ├── process-template-info.html │ │ ├── process-template-results.html │ │ └── process-template-select.html │ ├── process-template.html │ ├── replicas.html │ ├── resource-service-bindings.html │ ├── route-service-bar-chart.html │ ├── select-containers.html │ ├── selector.html │ ├── service-instance-bindings.html │ ├── traffic-table.html │ ├── ui-ace-yaml.html │ └── unbind-service.html │ ├── edit │ ├── autoscaler.html │ ├── build-config.html │ ├── config-map.html │ ├── deployment-config.html │ ├── health-checks.html │ ├── jenkinsfile-examples.html │ ├── project.html │ ├── route.html │ └── yaml.html │ ├── events.html │ ├── images.html │ ├── landing-page.html │ ├── logs │ ├── chromeless-build-log.html │ ├── chromeless-deployment-log.html │ ├── chromeless-pod-log.html │ └── textonly_log.html │ ├── membership.html │ ├── modals │ ├── about-compute-units-modal.html │ ├── confirm-replace.html │ ├── confirm-save-log.html │ ├── confirm.html │ ├── confirmScale.html │ ├── create-secret.html │ ├── debug-terminal.html │ ├── delete-resource.html │ ├── edit-pvc-resource.html │ ├── jenkinsfile-examples-modal.html │ ├── logout.html │ ├── process-or-save-template.html │ └── set-home-page-modal.html │ ├── monitoring.html │ ├── newfromtemplate.html │ ├── other-resources.html │ ├── overview.html │ ├── overview │ ├── _build-counts.html │ ├── _builds.html │ ├── _list-row-actions.html │ ├── _list-row-chevron.html │ ├── _list-row-content.html │ ├── _list-row-empty-state.html │ ├── _list-row-expanded.html │ ├── _list-row.html │ ├── _metrics-summary.html │ ├── _mini-log.html │ ├── _mobile-client-row.html │ ├── _networking.html │ ├── _notification-icon.html │ ├── _pipelines.html │ ├── _service-bindings.html │ ├── _service-instance-row.html │ ├── _service-linking-button.html │ ├── _traffic-percent.html │ ├── _virtual-machine-row.html │ └── _vm-status.html │ ├── pipelines.html │ ├── pods.html │ ├── project-browse-catalog.html │ ├── projects.html │ ├── quota.html │ ├── secrets.html │ ├── service-instances.html │ ├── services.html │ ├── set-limits.html │ ├── storage.html │ └── util │ ├── error.html │ ├── logout.html │ └── oauth.html ├── assets.go ├── bower.json ├── dist.java └── java │ ├── 404.html │ ├── app-747a60cd4f.js │ ├── favicon.ico │ ├── fonts │ ├── DroidSansMono-webfont.eot │ ├── DroidSansMono-webfont.svg │ ├── DroidSansMono-webfont.ttf │ ├── DroidSansMono-webfont.woff │ ├── OpenSans-Bold-webfont.eot │ ├── OpenSans-Bold-webfont.svg │ ├── OpenSans-Bold-webfont.ttf │ ├── OpenSans-Bold-webfont.woff │ ├── OpenSans-BoldItalic-webfont.eot │ ├── OpenSans-BoldItalic-webfont.svg │ ├── OpenSans-BoldItalic-webfont.ttf │ ├── OpenSans-BoldItalic-webfont.woff │ ├── OpenSans-ExtraBold-webfont.eot │ ├── OpenSans-ExtraBold-webfont.svg │ ├── OpenSans-ExtraBold-webfont.ttf │ ├── OpenSans-ExtraBold-webfont.woff │ ├── OpenSans-ExtraBoldItalic-webfont.eot │ ├── OpenSans-ExtraBoldItalic-webfont.svg │ ├── OpenSans-ExtraBoldItalic-webfont.ttf │ ├── OpenSans-ExtraBoldItalic-webfont.woff │ ├── OpenSans-Italic-webfont.eot │ ├── OpenSans-Italic-webfont.svg │ ├── OpenSans-Italic-webfont.ttf │ ├── OpenSans-Italic-webfont.woff │ ├── OpenSans-Light-webfont.eot │ ├── OpenSans-Light-webfont.svg │ ├── OpenSans-Light-webfont.ttf │ ├── OpenSans-Light-webfont.woff │ ├── OpenSans-LightItalic-webfont.eot │ ├── OpenSans-LightItalic-webfont.svg │ ├── OpenSans-LightItalic-webfont.ttf │ ├── OpenSans-LightItalic-webfont.woff │ ├── OpenSans-Regular-webfont.eot │ ├── OpenSans-Regular-webfont.svg │ ├── OpenSans-Regular-webfont.ttf │ ├── OpenSans-Regular-webfont.woff │ ├── OpenSans-Semibold-webfont.eot │ ├── OpenSans-Semibold-webfont.svg │ ├── OpenSans-Semibold-webfont.ttf │ ├── OpenSans-Semibold-webfont.woff │ ├── OpenSans-SemiboldItalic-webfont.eot │ ├── OpenSans-SemiboldItalic-webfont.svg │ ├── OpenSans-SemiboldItalic-webfont.ttf │ ├── OpenSans-SemiboldItalic-webfont.woff │ ├── PatternFlyIcons-webfont.eot │ ├── PatternFlyIcons-webfont.svg │ ├── PatternFlyIcons-webfont.ttf │ ├── PatternFlyIcons-webfont.woff │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 │ ├── img │ ├── OpenShift-Logo-NoText.svg │ ├── OpenShift-Logo-Text.svg │ ├── OpenShift-logo.svg │ ├── RH_Atomic-Logo-NoText.svg │ ├── RH_Atomic-Logo-Text.svg │ ├── RH_atomic.svg │ ├── ZeroClipboard.swf │ ├── apple-touch-icon-precomposed-114.png │ ├── apple-touch-icon-precomposed-144.png │ ├── apple-touch-icon-precomposed-152.png │ ├── apple-touch-icon-precomposed-180.png │ ├── apple-touch-icon-precomposed-57.png │ ├── apple-touch-icon-precomposed-72.png │ ├── apple-touch-icon-precomposed-76.png │ ├── bg-login.jpg │ ├── bg-modal-about-pf.png │ ├── bg-navbar-pf-alt.svg │ ├── brand-alt.svg │ ├── brand.svg │ ├── favicon.ico │ ├── hawtio_logo.svg │ ├── icons.gif │ ├── icons │ │ ├── activemq │ │ │ ├── connector.png │ │ │ ├── listener.gif │ │ │ ├── message_broker.png │ │ │ ├── queue.png │ │ │ ├── queue_folder.png │ │ │ ├── sender.gif │ │ │ ├── topic.png │ │ │ └── topic_folder.png │ │ ├── camel.svg │ │ ├── camel │ │ │ ├── aggregate24.png │ │ │ ├── bean24.png │ │ │ ├── breakpoint-suspended.gif │ │ │ ├── breakpoint.gif │ │ │ ├── camel.png │ │ │ ├── camel_context_icon.png │ │ │ ├── camel_route.png │ │ │ ├── camel_route_folder.png │ │ │ ├── camel_tracing.png │ │ │ ├── channel24.png │ │ │ ├── channelAdapter24.png │ │ │ ├── channelPurger24.png │ │ │ ├── choice24.png │ │ │ ├── commandMessage24.png │ │ │ ├── competingConsumers24.png │ │ │ ├── component_folder.png │ │ │ ├── contentBasedRouter24.png │ │ │ ├── contentFilter24.png │ │ │ ├── controlBus24.png │ │ │ ├── convertBodyTo24.png │ │ │ ├── correlationIdentifier24.png │ │ │ ├── customDataFormat24.png │ │ │ ├── datatypeChannel24.png │ │ │ ├── deadLetterChannel24.png │ │ │ ├── detour24.png │ │ │ ├── distributionAggregate24.png │ │ │ ├── documentMessage24.png │ │ │ ├── durableSubscription24.png │ │ │ ├── dynamicRouter24.png │ │ │ ├── edit_camel_route.png │ │ │ ├── encapsulatedSynchronous24.png │ │ │ ├── endoints.png │ │ │ ├── endpoint24.png │ │ │ ├── endpointDrools24.png │ │ │ ├── endpointFile24.png │ │ │ ├── endpointFolder24.png │ │ │ ├── endpointQueue24.png │ │ │ ├── endpointRepository24.png │ │ │ ├── endpointTimer24.png │ │ │ ├── endpoint_folder.png │ │ │ ├── endpoint_node.png │ │ │ ├── endpoints │ │ │ │ ├── SAP24.png │ │ │ │ ├── SAPNetweaver24.jpg │ │ │ │ ├── activemq24.png │ │ │ │ ├── atom24.png │ │ │ │ ├── bean24.png │ │ │ │ ├── cxf24.png │ │ │ │ ├── cxfrs24.png │ │ │ │ ├── ejb24.png │ │ │ │ ├── facebook24.jpg │ │ │ │ ├── file24.png │ │ │ │ ├── ftp24.png │ │ │ │ ├── ftps24.png │ │ │ │ ├── imap24.png │ │ │ │ ├── imaps24.png │ │ │ │ ├── jdbc24.png │ │ │ │ ├── jms24.png │ │ │ │ ├── language24.png │ │ │ │ ├── linkedin24.png │ │ │ │ ├── log24.png │ │ │ │ ├── mqtt24.png │ │ │ │ ├── netty-http24.png │ │ │ │ ├── netty24.png │ │ │ │ ├── netty4-http24.png │ │ │ │ ├── netty424.png │ │ │ │ ├── pop324.png │ │ │ │ ├── pop3s24.png │ │ │ │ ├── quartz224.png │ │ │ │ ├── quartz24.png │ │ │ │ ├── rss24.png │ │ │ │ ├── salesForce24.png │ │ │ │ ├── sap-netweaver24.png │ │ │ │ ├── servlet24.png │ │ │ │ ├── sftp24.png │ │ │ │ ├── smtp24.png │ │ │ │ ├── smtps24.png │ │ │ │ ├── snmp24.png │ │ │ │ ├── sql24.png │ │ │ │ ├── timer24.png │ │ │ │ ├── twitter24.png │ │ │ │ ├── weather24.jpg │ │ │ │ └── xslt24.png │ │ │ ├── enrich24.png │ │ │ ├── envelopeWrapper24.png │ │ │ ├── eventDrivenConsumer24.png │ │ │ ├── eventMessage24.png │ │ │ ├── fileTransfer24.png │ │ │ ├── filter24.png │ │ │ ├── flow24.png │ │ │ ├── generic24.png │ │ │ ├── guaranteedMessaging24.png │ │ │ ├── idempotentConsumer24.png │ │ │ ├── invalidMessageChannel24.png │ │ │ ├── loadBalance24.png │ │ │ ├── log24.png │ │ │ ├── marshal24.png │ │ │ ├── message24.png │ │ │ ├── messageBroker24.png │ │ │ ├── messageBus24.png │ │ │ ├── messageDispatcher24.png │ │ │ ├── messageExpiration24.png │ │ │ ├── messageSelector24.png │ │ │ ├── messageSequence24.png │ │ │ ├── messageStore24.png │ │ │ ├── messaging24.png │ │ │ ├── messagingAdapter24.png │ │ │ ├── messagingBridge24.png │ │ │ ├── messagingGateway24.png │ │ │ ├── multicast24.png │ │ │ ├── node24.png │ │ │ ├── normalizer24.png │ │ │ ├── pipeline24.png │ │ │ ├── pointToPoint24.png │ │ │ ├── pollEnrich24.png │ │ │ ├── pollingConsumer24.png │ │ │ ├── process24.png │ │ │ ├── processManager24.png │ │ │ ├── processor24.png │ │ │ ├── recipientList24.png │ │ │ ├── requestReply24.png │ │ │ ├── resequence24.png │ │ │ ├── resume.gif │ │ │ ├── returnAddress24.png │ │ │ ├── route24.png │ │ │ ├── routingSlip24.png │ │ │ ├── setBody24.png │ │ │ ├── sharedDatabase24.png │ │ │ ├── smartProxy24.png │ │ │ ├── split24.png │ │ │ ├── step.gif │ │ │ ├── storeInLibrary24.png │ │ │ ├── suspend.gif │ │ │ ├── testMessage24.png │ │ │ ├── transactionalClient24.png │ │ │ ├── transform24.png │ │ │ ├── unmarshal24.png │ │ │ └── wireTap24.png │ │ ├── cassandra.svg │ │ ├── fabric8_icon.svg │ │ ├── messagebroker.svg │ │ ├── osgi │ │ │ ├── bundle.png │ │ │ └── service.png │ │ └── quartz │ │ │ └── quarz.png │ ├── kubernetes-Logo.svg │ ├── kubernetes.svg │ ├── logo-alt.svg │ ├── logo-origin-thin.svg │ ├── logo.svg │ ├── spinner-inverse-lg.gif │ ├── spinner-inverse-sm.gif │ ├── spinner-inverse-xs.gif │ ├── spinner-inverse.gif │ ├── spinner-lg.gif │ ├── spinner-sm.gif │ ├── spinner-xs.gif │ └── spinner.gif │ ├── index.html │ ├── libs-a07e8842c6.js │ ├── style.css │ └── version.json ├── dist ├── 404.html ├── images │ ├── apple-touch-icon-precomposed.png │ ├── console-sprite.png │ ├── favicon.ico │ ├── favicon.png │ ├── logo-OCP-console-hdr-stacked.svg │ ├── logo-OCP-console-hdr-thin.svg │ ├── logo-okd.svg │ ├── logo-origin-thin.svg │ ├── logo-origin.png │ ├── logo-origin.svg │ ├── logos │ │ ├── 3scale.svg │ │ ├── aerogear.svg │ │ ├── amq.svg │ │ ├── angularjs.svg │ │ ├── ansible.svg │ │ ├── apache.svg │ │ ├── beaker.svg │ │ ├── capedwarf.svg │ │ ├── cassandra.svg │ │ ├── clojure.svg │ │ ├── codeigniter.svg │ │ ├── cordova.png │ │ ├── datagrid.svg │ │ ├── datavirt.svg │ │ ├── debian.svg │ │ ├── decisionserver.svg │ │ ├── django.svg │ │ ├── dotnet.svg │ │ ├── drupal.svg │ │ ├── eap.svg │ │ ├── elastic.svg │ │ ├── erlang.svg │ │ ├── fedora.svg │ │ ├── freebsd.svg │ │ ├── git.svg │ │ ├── github.svg │ │ ├── gitlab.svg │ │ ├── glassfish.svg │ │ ├── go-gopher.svg │ │ ├── grails.svg │ │ ├── hadoop.svg │ │ ├── haproxy.svg │ │ ├── infinispan.svg │ │ ├── jboss.svg │ │ ├── jenkins.svg │ │ ├── jetty.svg │ │ ├── joomla.svg │ │ ├── jruby.svg │ │ ├── js.svg │ │ ├── kubevirt.svg │ │ ├── laravel.svg │ │ ├── load-balancer.svg │ │ ├── mariadb.svg │ │ ├── mediawiki.svg │ │ ├── memcached.svg │ │ ├── mongodb.svg │ │ ├── mssql.svg │ │ ├── mysql-database.svg │ │ ├── nginx.svg │ │ ├── nodejs.svg │ │ ├── openjdk.svg │ │ ├── openliberty.svg │ │ ├── openshift.svg │ │ ├── openstack.svg │ │ ├── other-linux.svg │ │ ├── other-unknown.svg │ │ ├── perl.svg │ │ ├── phalcon.svg │ │ ├── php.svg │ │ ├── play.svg │ │ ├── postgresql.svg │ │ ├── processserver.svg │ │ ├── python.svg │ │ ├── rabbitmq.svg │ │ ├── rails.svg │ │ ├── redis.svg │ │ ├── rh-integration.svg │ │ ├── rh-tomcat.svg │ │ ├── ruby.svg │ │ ├── scala.svg │ │ ├── shadowman.svg │ │ ├── spring.svg │ │ ├── sso.svg │ │ ├── stackoverflow.svg │ │ ├── suse.svg │ │ ├── symfony.svg │ │ ├── tomcat.svg │ │ ├── ubuntu.svg │ │ ├── wildfly.svg │ │ ├── windows.svg │ │ ├── wordpress.svg │ │ ├── xamarin.svg │ │ └── zend.svg │ ├── mask-icon.svg │ ├── mstile-144x144.png │ ├── openshift-logo.svg │ ├── openshift-logo222.png │ ├── redhat.png │ ├── redhat.svg │ └── sprite-vert.png ├── index.html ├── robots.txt ├── scripts │ ├── oldieshim.js │ ├── scripts.js │ ├── templates.js │ └── vendor.js └── styles │ ├── fonts │ ├── FontAwesome.otf │ ├── OpenSans-Bold-webfont.eot │ ├── OpenSans-Bold-webfont.svg │ ├── OpenSans-Bold-webfont.ttf │ ├── OpenSans-Bold-webfont.woff │ ├── OpenSans-Bold-webfont.woff2 │ ├── OpenSans-BoldItalic-webfont.eot │ ├── OpenSans-BoldItalic-webfont.svg │ ├── OpenSans-BoldItalic-webfont.ttf │ ├── OpenSans-BoldItalic-webfont.woff │ ├── OpenSans-BoldItalic-webfont.woff2 │ ├── OpenSans-ExtraBold-webfont.eot │ ├── OpenSans-ExtraBold-webfont.svg │ ├── OpenSans-ExtraBold-webfont.ttf │ ├── OpenSans-ExtraBold-webfont.woff │ ├── OpenSans-ExtraBold-webfont.woff2 │ ├── OpenSans-ExtraBoldItalic-webfont.eot │ ├── OpenSans-ExtraBoldItalic-webfont.svg │ ├── OpenSans-ExtraBoldItalic-webfont.ttf │ ├── OpenSans-ExtraBoldItalic-webfont.woff │ ├── OpenSans-ExtraBoldItalic-webfont.woff2 │ ├── OpenSans-Italic-webfont.eot │ ├── OpenSans-Italic-webfont.svg │ ├── OpenSans-Italic-webfont.ttf │ ├── OpenSans-Italic-webfont.woff │ ├── OpenSans-Italic-webfont.woff2 │ ├── OpenSans-Light-webfont.eot │ ├── OpenSans-Light-webfont.svg │ ├── OpenSans-Light-webfont.ttf │ ├── OpenSans-Light-webfont.woff │ ├── OpenSans-Light-webfont.woff2 │ ├── OpenSans-LightItalic-webfont.eot │ ├── OpenSans-LightItalic-webfont.svg │ ├── OpenSans-LightItalic-webfont.ttf │ ├── OpenSans-LightItalic-webfont.woff │ ├── OpenSans-LightItalic-webfont.woff2 │ ├── OpenSans-Regular-webfont.eot │ ├── OpenSans-Regular-webfont.svg │ ├── OpenSans-Regular-webfont.ttf │ ├── OpenSans-Regular-webfont.woff │ ├── OpenSans-Regular-webfont.woff2 │ ├── OpenSans-Semibold-webfont.eot │ ├── OpenSans-Semibold-webfont.svg │ ├── OpenSans-Semibold-webfont.ttf │ ├── OpenSans-Semibold-webfont.woff │ ├── OpenSans-Semibold-webfont.woff2 │ ├── OpenSans-SemiboldItalic-webfont.eot │ ├── OpenSans-SemiboldItalic-webfont.svg │ ├── OpenSans-SemiboldItalic-webfont.ttf │ ├── OpenSans-SemiboldItalic-webfont.woff │ ├── OpenSans-SemiboldItalic-webfont.woff2 │ ├── PatternFlyIcons-webfont.eot │ ├── PatternFlyIcons-webfont.svg │ ├── PatternFlyIcons-webfont.ttf │ ├── PatternFlyIcons-webfont.woff │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ ├── glyphicons-halflings-regular.woff2 │ ├── openshift-logos-icon.svg │ ├── openshift-logos-icon.ttf │ └── openshift-logos-icon.woff │ ├── main.css │ └── vendor.css ├── doc.go ├── extensions ├── examples │ ├── online-extensions.css │ └── online-extensions.js ├── local-extensions.css └── local-extensions.js ├── hack ├── clean-deps.sh ├── install-deps.sh ├── lib │ ├── init.sh │ ├── log │ │ ├── output.sh │ │ └── output_additions.sh │ └── util │ │ └── text.sh ├── test-headless.sh └── verify-dist.sh ├── httpd-cfg └── openshift-web-console.conf ├── images ├── origin-web-console-builder │ └── Dockerfile └── origin-web-console-release │ └── Dockerfile ├── package.json ├── test ├── .gitignore ├── .jshintrc ├── extensions │ ├── local-extensions.css │ └── local-extensions.js ├── integration │ ├── e2e.js │ ├── features │ │ ├── user_adds_imagestream_to_project.spec.js │ │ ├── user_adds_template_to_project.spec.js │ │ ├── user_creates_from_url.spec.js │ │ └── user_creates_project.spec.js │ ├── fixtures │ │ ├── image-streams-centos7.json │ │ └── nodejs-mongodb.json │ ├── helpers.js │ ├── helpers │ │ ├── env.js │ │ ├── inputs.js │ │ ├── logger.js │ │ ├── matchers.js │ │ ├── project.js │ │ ├── screenshot.js │ │ ├── scroll.js │ │ └── tables.js │ └── page-objects │ │ ├── README.md │ │ ├── builds.js │ │ ├── catalog.js │ │ ├── createFromTemplate.js │ │ ├── createFromURL.js │ │ ├── createProject.js │ │ ├── deployments.js │ │ ├── imageStreams.js │ │ ├── menus.js │ │ ├── modals │ │ └── addTemplateModal.js │ │ ├── overview.js │ │ ├── page.js │ │ ├── routes.js │ │ └── services.js ├── karma.conf.js ├── protractor-mac.conf.js ├── protractor.conf.js ├── spec │ ├── controllers │ │ ├── create.js │ │ ├── create │ │ │ └── createFromImageSpec.js │ │ └── projects.js │ ├── filters │ │ ├── defaultIfEmptySpec.js │ │ ├── entrypointSpec.js │ │ ├── httpHttpsSpec.js │ │ ├── valuesInSpec.js │ │ ├── valuesNotInSpec.js │ │ └── yesNoSpec.js │ ├── fixtures │ │ └── api-discovery.js │ ├── services │ │ ├── applicationGeneratorSpec.js │ │ ├── breadcrumbsServiceSpec.js │ │ ├── cliHelpSpec.js │ │ ├── environmentServiceSpec.js │ │ ├── homePagePreferenceSpec.js │ │ ├── hpaServiceSpec.js │ │ ├── limitsRangesServiceSpec.js │ │ ├── membership │ │ │ ├── membershipSpec.js │ │ │ └── roleBindingsSpec.js │ │ ├── nameGeneratorSpec.js │ │ └── routesSpec.js │ └── spec-helper.js ├── testdata │ ├── README.md │ ├── k8s-deployments.yaml │ └── overview-edge-cases.yaml └── upgrade-selenium.js └── tls ├── tls.crt └── tls.key /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | *.svg binary 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/.jshintrc -------------------------------------------------------------------------------- /.release: -------------------------------------------------------------------------------- 1 | 3.11 2 | -------------------------------------------------------------------------------- /.s2i/bin/assemble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/.s2i/bin/assemble -------------------------------------------------------------------------------- /.s2i/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/.s2i/bin/run -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/Makefile -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/OWNERS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/README.md -------------------------------------------------------------------------------- /app/.buildignore: -------------------------------------------------------------------------------- 1 | *.coffee -------------------------------------------------------------------------------- /app/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/404.html -------------------------------------------------------------------------------- /app/components/alerts/alerts.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/components/alerts/alerts.component.js -------------------------------------------------------------------------------- /app/components/alerts/alerts.component.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/components/alerts/alerts.component.spec.js -------------------------------------------------------------------------------- /app/components/alerts/alerts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/components/alerts/alerts.html -------------------------------------------------------------------------------- /app/components/istag-select/istag-select.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/components/istag-select/istag-select.html -------------------------------------------------------------------------------- /app/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/config.js -------------------------------------------------------------------------------- /app/images/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /app/images/console-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/console-sprite.png -------------------------------------------------------------------------------- /app/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/favicon.ico -------------------------------------------------------------------------------- /app/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/favicon.png -------------------------------------------------------------------------------- /app/images/logo-OCP-console-hdr-stacked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logo-OCP-console-hdr-stacked.svg -------------------------------------------------------------------------------- /app/images/logo-OCP-console-hdr-thin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logo-OCP-console-hdr-thin.svg -------------------------------------------------------------------------------- /app/images/logo-okd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logo-okd.svg -------------------------------------------------------------------------------- /app/images/logo-origin-thin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logo-origin-thin.svg -------------------------------------------------------------------------------- /app/images/logo-origin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logo-origin.png -------------------------------------------------------------------------------- /app/images/logo-origin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logo-origin.svg -------------------------------------------------------------------------------- /app/images/logos/3scale.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/3scale.svg -------------------------------------------------------------------------------- /app/images/logos/aerogear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/aerogear.svg -------------------------------------------------------------------------------- /app/images/logos/amq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/amq.svg -------------------------------------------------------------------------------- /app/images/logos/angularjs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/angularjs.svg -------------------------------------------------------------------------------- /app/images/logos/ansible.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/ansible.svg -------------------------------------------------------------------------------- /app/images/logos/apache.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/apache.svg -------------------------------------------------------------------------------- /app/images/logos/beaker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/beaker.svg -------------------------------------------------------------------------------- /app/images/logos/capedwarf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/capedwarf.svg -------------------------------------------------------------------------------- /app/images/logos/cassandra.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/cassandra.svg -------------------------------------------------------------------------------- /app/images/logos/clojure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/clojure.svg -------------------------------------------------------------------------------- /app/images/logos/codeigniter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/codeigniter.svg -------------------------------------------------------------------------------- /app/images/logos/cordova.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/cordova.png -------------------------------------------------------------------------------- /app/images/logos/datagrid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/datagrid.svg -------------------------------------------------------------------------------- /app/images/logos/datavirt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/datavirt.svg -------------------------------------------------------------------------------- /app/images/logos/debian.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/debian.svg -------------------------------------------------------------------------------- /app/images/logos/decisionserver.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/decisionserver.svg -------------------------------------------------------------------------------- /app/images/logos/django.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/django.svg -------------------------------------------------------------------------------- /app/images/logos/dotnet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/dotnet.svg -------------------------------------------------------------------------------- /app/images/logos/drupal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/drupal.svg -------------------------------------------------------------------------------- /app/images/logos/eap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/eap.svg -------------------------------------------------------------------------------- /app/images/logos/elastic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/elastic.svg -------------------------------------------------------------------------------- /app/images/logos/erlang.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/erlang.svg -------------------------------------------------------------------------------- /app/images/logos/fedora.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/fedora.svg -------------------------------------------------------------------------------- /app/images/logos/freebsd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/freebsd.svg -------------------------------------------------------------------------------- /app/images/logos/git.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/git.svg -------------------------------------------------------------------------------- /app/images/logos/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/github.svg -------------------------------------------------------------------------------- /app/images/logos/gitlab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/gitlab.svg -------------------------------------------------------------------------------- /app/images/logos/glassfish.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/glassfish.svg -------------------------------------------------------------------------------- /app/images/logos/go-gopher.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/go-gopher.svg -------------------------------------------------------------------------------- /app/images/logos/grails.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/grails.svg -------------------------------------------------------------------------------- /app/images/logos/hadoop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/hadoop.svg -------------------------------------------------------------------------------- /app/images/logos/haproxy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/haproxy.svg -------------------------------------------------------------------------------- /app/images/logos/infinispan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/infinispan.svg -------------------------------------------------------------------------------- /app/images/logos/jboss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/jboss.svg -------------------------------------------------------------------------------- /app/images/logos/jenkins.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/jenkins.svg -------------------------------------------------------------------------------- /app/images/logos/jetty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/jetty.svg -------------------------------------------------------------------------------- /app/images/logos/joomla.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/joomla.svg -------------------------------------------------------------------------------- /app/images/logos/jruby.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/jruby.svg -------------------------------------------------------------------------------- /app/images/logos/js.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/js.svg -------------------------------------------------------------------------------- /app/images/logos/kubevirt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/kubevirt.svg -------------------------------------------------------------------------------- /app/images/logos/laravel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/laravel.svg -------------------------------------------------------------------------------- /app/images/logos/load-balancer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/load-balancer.svg -------------------------------------------------------------------------------- /app/images/logos/mariadb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/mariadb.svg -------------------------------------------------------------------------------- /app/images/logos/mediawiki.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/mediawiki.svg -------------------------------------------------------------------------------- /app/images/logos/memcached.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/memcached.svg -------------------------------------------------------------------------------- /app/images/logos/mongodb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/mongodb.svg -------------------------------------------------------------------------------- /app/images/logos/mssql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/mssql.svg -------------------------------------------------------------------------------- /app/images/logos/mysql-database.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/mysql-database.svg -------------------------------------------------------------------------------- /app/images/logos/nginx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/nginx.svg -------------------------------------------------------------------------------- /app/images/logos/nodejs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/nodejs.svg -------------------------------------------------------------------------------- /app/images/logos/openjdk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/openjdk.svg -------------------------------------------------------------------------------- /app/images/logos/openliberty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/openliberty.svg -------------------------------------------------------------------------------- /app/images/logos/openshift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/openshift.svg -------------------------------------------------------------------------------- /app/images/logos/openstack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/openstack.svg -------------------------------------------------------------------------------- /app/images/logos/other-linux.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/other-linux.svg -------------------------------------------------------------------------------- /app/images/logos/other-unknown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/other-unknown.svg -------------------------------------------------------------------------------- /app/images/logos/perl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/perl.svg -------------------------------------------------------------------------------- /app/images/logos/phalcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/phalcon.svg -------------------------------------------------------------------------------- /app/images/logos/php.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/php.svg -------------------------------------------------------------------------------- /app/images/logos/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/play.svg -------------------------------------------------------------------------------- /app/images/logos/postgresql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/postgresql.svg -------------------------------------------------------------------------------- /app/images/logos/processserver.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/processserver.svg -------------------------------------------------------------------------------- /app/images/logos/python.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/python.svg -------------------------------------------------------------------------------- /app/images/logos/rabbitmq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/rabbitmq.svg -------------------------------------------------------------------------------- /app/images/logos/rails.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/rails.svg -------------------------------------------------------------------------------- /app/images/logos/redis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/redis.svg -------------------------------------------------------------------------------- /app/images/logos/rh-integration.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/rh-integration.svg -------------------------------------------------------------------------------- /app/images/logos/rh-tomcat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/rh-tomcat.svg -------------------------------------------------------------------------------- /app/images/logos/ruby.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/ruby.svg -------------------------------------------------------------------------------- /app/images/logos/scala.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/scala.svg -------------------------------------------------------------------------------- /app/images/logos/shadowman.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/shadowman.svg -------------------------------------------------------------------------------- /app/images/logos/spring.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/spring.svg -------------------------------------------------------------------------------- /app/images/logos/sso.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/sso.svg -------------------------------------------------------------------------------- /app/images/logos/stackoverflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/stackoverflow.svg -------------------------------------------------------------------------------- /app/images/logos/suse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/suse.svg -------------------------------------------------------------------------------- /app/images/logos/symfony.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/symfony.svg -------------------------------------------------------------------------------- /app/images/logos/tomcat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/tomcat.svg -------------------------------------------------------------------------------- /app/images/logos/ubuntu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/ubuntu.svg -------------------------------------------------------------------------------- /app/images/logos/wildfly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/wildfly.svg -------------------------------------------------------------------------------- /app/images/logos/windows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/windows.svg -------------------------------------------------------------------------------- /app/images/logos/wordpress.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/wordpress.svg -------------------------------------------------------------------------------- /app/images/logos/xamarin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/xamarin.svg -------------------------------------------------------------------------------- /app/images/logos/zend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/logos/zend.svg -------------------------------------------------------------------------------- /app/images/mask-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/mask-icon.svg -------------------------------------------------------------------------------- /app/images/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/mstile-144x144.png -------------------------------------------------------------------------------- /app/images/openshift-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/openshift-logo.svg -------------------------------------------------------------------------------- /app/images/openshift-logo222.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/openshift-logo222.png -------------------------------------------------------------------------------- /app/images/redhat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/redhat.png -------------------------------------------------------------------------------- /app/images/redhat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/redhat.svg -------------------------------------------------------------------------------- /app/images/sprite-vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/images/sprite-vert.png -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/index.html -------------------------------------------------------------------------------- /app/robots.txt: -------------------------------------------------------------------------------- 1 | # robotstxt.org 2 | 3 | User-agent: * 4 | -------------------------------------------------------------------------------- /app/scripts/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/app.js -------------------------------------------------------------------------------- /app/scripts/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/constants.js -------------------------------------------------------------------------------- /app/scripts/controllers/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/about.js -------------------------------------------------------------------------------- /app/scripts/controllers/addConfigVolume.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/addConfigVolume.js -------------------------------------------------------------------------------- /app/scripts/controllers/attachPVC.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/attachPVC.js -------------------------------------------------------------------------------- /app/scripts/controllers/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/build.js -------------------------------------------------------------------------------- /app/scripts/controllers/buildConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/buildConfig.js -------------------------------------------------------------------------------- /app/scripts/controllers/builds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/builds.js -------------------------------------------------------------------------------- /app/scripts/controllers/commandLine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/commandLine.js -------------------------------------------------------------------------------- /app/scripts/controllers/configMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/configMap.js -------------------------------------------------------------------------------- /app/scripts/controllers/configMaps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/configMaps.js -------------------------------------------------------------------------------- /app/scripts/controllers/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/create.js -------------------------------------------------------------------------------- /app/scripts/controllers/create/nextSteps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/create/nextSteps.js -------------------------------------------------------------------------------- /app/scripts/controllers/createConfigMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/createConfigMap.js -------------------------------------------------------------------------------- /app/scripts/controllers/createFromURL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/createFromURL.js -------------------------------------------------------------------------------- /app/scripts/controllers/createProject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/createProject.js -------------------------------------------------------------------------------- /app/scripts/controllers/createRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/createRoute.js -------------------------------------------------------------------------------- /app/scripts/controllers/createSecret.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/createSecret.js -------------------------------------------------------------------------------- /app/scripts/controllers/deployment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/deployment.js -------------------------------------------------------------------------------- /app/scripts/controllers/deploymentConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/deploymentConfig.js -------------------------------------------------------------------------------- /app/scripts/controllers/deployments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/deployments.js -------------------------------------------------------------------------------- /app/scripts/controllers/edit/autoscaler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/edit/autoscaler.js -------------------------------------------------------------------------------- /app/scripts/controllers/edit/buildConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/edit/buildConfig.js -------------------------------------------------------------------------------- /app/scripts/controllers/edit/configMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/edit/configMap.js -------------------------------------------------------------------------------- /app/scripts/controllers/edit/healthChecks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/edit/healthChecks.js -------------------------------------------------------------------------------- /app/scripts/controllers/edit/project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/edit/project.js -------------------------------------------------------------------------------- /app/scripts/controllers/edit/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/edit/route.js -------------------------------------------------------------------------------- /app/scripts/controllers/edit/yaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/edit/yaml.js -------------------------------------------------------------------------------- /app/scripts/controllers/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/events.js -------------------------------------------------------------------------------- /app/scripts/controllers/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/image.js -------------------------------------------------------------------------------- /app/scripts/controllers/images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/images.js -------------------------------------------------------------------------------- /app/scripts/controllers/imagestream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/imagestream.js -------------------------------------------------------------------------------- /app/scripts/controllers/labels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/labels.js -------------------------------------------------------------------------------- /app/scripts/controllers/landingPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/landingPage.js -------------------------------------------------------------------------------- /app/scripts/controllers/membership.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/membership.js -------------------------------------------------------------------------------- /app/scripts/controllers/modals/confirmModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/modals/confirmModal.js -------------------------------------------------------------------------------- /app/scripts/controllers/modals/confirmScale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/modals/confirmScale.js -------------------------------------------------------------------------------- /app/scripts/controllers/modals/debugTerminal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/modals/debugTerminal.js -------------------------------------------------------------------------------- /app/scripts/controllers/modals/deleteModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/modals/deleteModal.js -------------------------------------------------------------------------------- /app/scripts/controllers/modals/editPvcModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/modals/editPvcModal.js -------------------------------------------------------------------------------- /app/scripts/controllers/modals/linkService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/modals/linkService.js -------------------------------------------------------------------------------- /app/scripts/controllers/modals/logoutModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/modals/logoutModal.js -------------------------------------------------------------------------------- /app/scripts/controllers/monitoring.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/monitoring.js -------------------------------------------------------------------------------- /app/scripts/controllers/newfromtemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/newfromtemplate.js -------------------------------------------------------------------------------- /app/scripts/controllers/otherResources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/otherResources.js -------------------------------------------------------------------------------- /app/scripts/controllers/overview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/overview.js -------------------------------------------------------------------------------- /app/scripts/controllers/pipelines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/pipelines.js -------------------------------------------------------------------------------- /app/scripts/controllers/pod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/pod.js -------------------------------------------------------------------------------- /app/scripts/controllers/pods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/pods.js -------------------------------------------------------------------------------- /app/scripts/controllers/projectBrowseCatalog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/projectBrowseCatalog.js -------------------------------------------------------------------------------- /app/scripts/controllers/projects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/projects.js -------------------------------------------------------------------------------- /app/scripts/controllers/quota.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/quota.js -------------------------------------------------------------------------------- /app/scripts/controllers/replicaSet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/replicaSet.js -------------------------------------------------------------------------------- /app/scripts/controllers/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/route.js -------------------------------------------------------------------------------- /app/scripts/controllers/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/routes.js -------------------------------------------------------------------------------- /app/scripts/controllers/secret.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/secret.js -------------------------------------------------------------------------------- /app/scripts/controllers/secrets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/secrets.js -------------------------------------------------------------------------------- /app/scripts/controllers/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/service.js -------------------------------------------------------------------------------- /app/scripts/controllers/serviceInstance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/serviceInstance.js -------------------------------------------------------------------------------- /app/scripts/controllers/serviceInstances.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/serviceInstances.js -------------------------------------------------------------------------------- /app/scripts/controllers/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/services.js -------------------------------------------------------------------------------- /app/scripts/controllers/setLimits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/setLimits.js -------------------------------------------------------------------------------- /app/scripts/controllers/statefulSet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/statefulSet.js -------------------------------------------------------------------------------- /app/scripts/controllers/statefulSets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/statefulSets.js -------------------------------------------------------------------------------- /app/scripts/controllers/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/storage.js -------------------------------------------------------------------------------- /app/scripts/controllers/tasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/tasks.js -------------------------------------------------------------------------------- /app/scripts/controllers/util/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/util/error.js -------------------------------------------------------------------------------- /app/scripts/controllers/util/logout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/util/logout.js -------------------------------------------------------------------------------- /app/scripts/controllers/util/oauth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/controllers/util/oauth.js -------------------------------------------------------------------------------- /app/scripts/directives/actionChip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/actionChip.js -------------------------------------------------------------------------------- /app/scripts/directives/affix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/affix.js -------------------------------------------------------------------------------- /app/scripts/directives/bindService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/bindService.js -------------------------------------------------------------------------------- /app/scripts/directives/buildClose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/buildClose.js -------------------------------------------------------------------------------- /app/scripts/directives/buildCounts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/buildCounts.js -------------------------------------------------------------------------------- /app/scripts/directives/buildHooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/buildHooks.js -------------------------------------------------------------------------------- /app/scripts/directives/buildPipeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/buildPipeline.js -------------------------------------------------------------------------------- /app/scripts/directives/buildStatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/buildStatus.js -------------------------------------------------------------------------------- /app/scripts/directives/buildTrendsChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/buildTrendsChart.js -------------------------------------------------------------------------------- /app/scripts/directives/catalog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/catalog.js -------------------------------------------------------------------------------- /app/scripts/directives/catalog/catalogImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/catalog/catalogImage.js -------------------------------------------------------------------------------- /app/scripts/directives/confirmOnExit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/confirmOnExit.js -------------------------------------------------------------------------------- /app/scripts/directives/create/nextSteps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/create/nextSteps.js -------------------------------------------------------------------------------- /app/scripts/directives/createSecret.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/createSecret.js -------------------------------------------------------------------------------- /app/scripts/directives/date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/date.js -------------------------------------------------------------------------------- /app/scripts/directives/deleteLink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/deleteLink.js -------------------------------------------------------------------------------- /app/scripts/directives/deployImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/deployImage.js -------------------------------------------------------------------------------- /app/scripts/directives/deployImageDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/deployImageDialog.js -------------------------------------------------------------------------------- /app/scripts/directives/deploymentDonut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/deploymentDonut.js -------------------------------------------------------------------------------- /app/scripts/directives/deploymentMetrics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/deploymentMetrics.js -------------------------------------------------------------------------------- /app/scripts/directives/dropdownItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/dropdownItem.js -------------------------------------------------------------------------------- /app/scripts/directives/editCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/editCommand.js -------------------------------------------------------------------------------- /app/scripts/directives/editConfigMapOrSecret.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/editConfigMapOrSecret.js -------------------------------------------------------------------------------- /app/scripts/directives/editEnvironmentFrom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/editEnvironmentFrom.js -------------------------------------------------------------------------------- /app/scripts/directives/editProbe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/editProbe.js -------------------------------------------------------------------------------- /app/scripts/directives/editPvc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/editPvc.js -------------------------------------------------------------------------------- /app/scripts/directives/editRequestLimit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/editRequestLimit.js -------------------------------------------------------------------------------- /app/scripts/directives/ellipsisPulser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/ellipsisPulser.js -------------------------------------------------------------------------------- /app/scripts/directives/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/events.js -------------------------------------------------------------------------------- /app/scripts/directives/eventsBadge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/eventsBadge.js -------------------------------------------------------------------------------- /app/scripts/directives/eventsSidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/eventsSidebar.js -------------------------------------------------------------------------------- /app/scripts/directives/fromFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/fromFile.js -------------------------------------------------------------------------------- /app/scripts/directives/fromFileDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/fromFileDialog.js -------------------------------------------------------------------------------- /app/scripts/directives/imageNames.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/imageNames.js -------------------------------------------------------------------------------- /app/scripts/directives/initContainersSummary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/initContainersSummary.js -------------------------------------------------------------------------------- /app/scripts/directives/keyValueEditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/keyValueEditor.js -------------------------------------------------------------------------------- /app/scripts/directives/labels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/labels.js -------------------------------------------------------------------------------- /app/scripts/directives/lifecycleHook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/lifecycleHook.js -------------------------------------------------------------------------------- /app/scripts/directives/logViewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/logViewer.js -------------------------------------------------------------------------------- /app/scripts/directives/metricsSummary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/metricsSummary.js -------------------------------------------------------------------------------- /app/scripts/directives/miniLog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/miniLog.js -------------------------------------------------------------------------------- /app/scripts/directives/nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/nav.js -------------------------------------------------------------------------------- /app/scripts/directives/notificationIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/notificationIcon.js -------------------------------------------------------------------------------- /app/scripts/directives/optionalLink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/optionalLink.js -------------------------------------------------------------------------------- /app/scripts/directives/oscAutoscaling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/oscAutoscaling.js -------------------------------------------------------------------------------- /app/scripts/directives/oscFileInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/oscFileInput.js -------------------------------------------------------------------------------- /app/scripts/directives/oscFormSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/oscFormSection.js -------------------------------------------------------------------------------- /app/scripts/directives/oscGitLink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/oscGitLink.js -------------------------------------------------------------------------------- /app/scripts/directives/oscImageSummary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/oscImageSummary.js -------------------------------------------------------------------------------- /app/scripts/directives/oscRouting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/oscRouting.js -------------------------------------------------------------------------------- /app/scripts/directives/oscSecrets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/oscSecrets.js -------------------------------------------------------------------------------- /app/scripts/directives/oscSourceSecrets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/oscSourceSecrets.js -------------------------------------------------------------------------------- /app/scripts/directives/overview/builds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/overview/builds.js -------------------------------------------------------------------------------- /app/scripts/directives/overview/listRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/overview/listRow.js -------------------------------------------------------------------------------- /app/scripts/directives/overview/networking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/overview/networking.js -------------------------------------------------------------------------------- /app/scripts/directives/overview/pipelines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/overview/pipelines.js -------------------------------------------------------------------------------- /app/scripts/directives/parseError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/parseError.js -------------------------------------------------------------------------------- /app/scripts/directives/pauseRolloutsCheckbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/pauseRolloutsCheckbox.js -------------------------------------------------------------------------------- /app/scripts/directives/podDonut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/podDonut.js -------------------------------------------------------------------------------- /app/scripts/directives/podMetrics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/podMetrics.js -------------------------------------------------------------------------------- /app/scripts/directives/popups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/popups.js -------------------------------------------------------------------------------- /app/scripts/directives/processTemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/processTemplate.js -------------------------------------------------------------------------------- /app/scripts/directives/processTemplateDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/processTemplateDialog.js -------------------------------------------------------------------------------- /app/scripts/directives/quotaUsageChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/quotaUsageChart.js -------------------------------------------------------------------------------- /app/scripts/directives/replicas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/replicas.js -------------------------------------------------------------------------------- /app/scripts/directives/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/resources.js -------------------------------------------------------------------------------- /app/scripts/directives/routeServiceBarChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/routeServiceBarChart.js -------------------------------------------------------------------------------- /app/scripts/directives/routeServicePie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/routeServicePie.js -------------------------------------------------------------------------------- /app/scripts/directives/selectContainers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/selectContainers.js -------------------------------------------------------------------------------- /app/scripts/directives/selector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/selector.js -------------------------------------------------------------------------------- /app/scripts/directives/serviceBinding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/serviceBinding.js -------------------------------------------------------------------------------- /app/scripts/directives/statusIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/statusIcon.js -------------------------------------------------------------------------------- /app/scripts/directives/templateopt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/templateopt.js -------------------------------------------------------------------------------- /app/scripts/directives/uiAceYaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/uiAceYaml.js -------------------------------------------------------------------------------- /app/scripts/directives/unbindService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/unbindService.js -------------------------------------------------------------------------------- /app/scripts/directives/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/directives/util.js -------------------------------------------------------------------------------- /app/scripts/extensions/javalink/javaLink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/extensions/javalink/javaLink.js -------------------------------------------------------------------------------- /app/scripts/extensions/nav/dropdownMobile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/extensions/nav/dropdownMobile.js -------------------------------------------------------------------------------- /app/scripts/extensions/nav/helpDropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/extensions/nav/helpDropdown.js -------------------------------------------------------------------------------- /app/scripts/extensions/nav/userDropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/extensions/nav/userDropdown.js -------------------------------------------------------------------------------- /app/scripts/filters/canI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/filters/canI.js -------------------------------------------------------------------------------- /app/scripts/filters/date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/filters/date.js -------------------------------------------------------------------------------- /app/scripts/filters/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/filters/resources.js -------------------------------------------------------------------------------- /app/scripts/filters/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/filters/util.js -------------------------------------------------------------------------------- /app/scripts/services/applicationGenerator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/services/applicationGenerator.js -------------------------------------------------------------------------------- /app/scripts/services/apps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/services/apps.js -------------------------------------------------------------------------------- /app/scripts/services/breadcrumbs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/services/breadcrumbs.js -------------------------------------------------------------------------------- /app/scripts/services/browserStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/services/browserStore.js -------------------------------------------------------------------------------- /app/scripts/services/builds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/services/builds.js -------------------------------------------------------------------------------- /app/scripts/services/catalog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/services/catalog.js -------------------------------------------------------------------------------- /app/scripts/services/charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/services/charts.js -------------------------------------------------------------------------------- /app/scripts/services/cliHelp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/services/cliHelp.js -------------------------------------------------------------------------------- /app/scripts/services/containerWebSocket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/services/containerWebSocket.js -------------------------------------------------------------------------------- /app/scripts/services/convert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/services/convert.js -------------------------------------------------------------------------------- /app/scripts/services/deployments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/services/deployments.js -------------------------------------------------------------------------------- /app/scripts/services/discovery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/services/discovery.js -------------------------------------------------------------------------------- /app/scripts/services/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/services/environment.js -------------------------------------------------------------------------------- /app/scripts/services/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/services/events.js -------------------------------------------------------------------------------- /app/scripts/services/fullscreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/services/fullscreen.js -------------------------------------------------------------------------------- /app/scripts/services/homePagePreference.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/services/homePagePreference.js -------------------------------------------------------------------------------- /app/scripts/services/hpa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/services/hpa.js -------------------------------------------------------------------------------- /app/scripts/services/imageStreamResolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/services/imageStreamResolver.js -------------------------------------------------------------------------------- /app/scripts/services/images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/services/images.js -------------------------------------------------------------------------------- /app/scripts/services/imagestreams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/services/imagestreams.js -------------------------------------------------------------------------------- /app/scripts/services/keyValueEditorProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/services/keyValueEditorProvider.js -------------------------------------------------------------------------------- /app/scripts/services/keyValueEditorUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/services/keyValueEditorUtils.js -------------------------------------------------------------------------------- /app/scripts/services/labels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/services/labels.js -------------------------------------------------------------------------------- /app/scripts/services/limits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/services/limits.js -------------------------------------------------------------------------------- /app/scripts/services/listRowUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/services/listRowUtils.js -------------------------------------------------------------------------------- /app/scripts/services/logLinks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/services/logLinks.js -------------------------------------------------------------------------------- /app/scripts/services/membership/membership.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/services/membership/membership.js -------------------------------------------------------------------------------- /app/scripts/services/membership/roleBindings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/services/membership/roleBindings.js -------------------------------------------------------------------------------- /app/scripts/services/membership/roles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/services/membership/roles.js -------------------------------------------------------------------------------- /app/scripts/services/metrics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/services/metrics.js -------------------------------------------------------------------------------- /app/scripts/services/metricsCharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/services/metricsCharts.js -------------------------------------------------------------------------------- /app/scripts/services/modals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/services/modals.js -------------------------------------------------------------------------------- /app/scripts/services/nameGenerator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/services/nameGenerator.js -------------------------------------------------------------------------------- /app/scripts/services/navigate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/services/navigate.js -------------------------------------------------------------------------------- /app/scripts/services/ownerReferences.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/services/ownerReferences.js -------------------------------------------------------------------------------- /app/scripts/services/pods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/services/pods.js -------------------------------------------------------------------------------- /app/scripts/services/quota.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/services/quota.js -------------------------------------------------------------------------------- /app/scripts/services/resourceAlerts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/services/resourceAlerts.js -------------------------------------------------------------------------------- /app/scripts/services/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/services/routes.js -------------------------------------------------------------------------------- /app/scripts/services/secrets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/services/secrets.js -------------------------------------------------------------------------------- /app/scripts/services/securityCheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/services/securityCheck.js -------------------------------------------------------------------------------- /app/scripts/services/serviceInstances.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/services/serviceInstances.js -------------------------------------------------------------------------------- /app/scripts/services/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/services/services.js -------------------------------------------------------------------------------- /app/scripts/services/shims/hawtioExtension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/services/shims/hawtioExtension.js -------------------------------------------------------------------------------- /app/scripts/services/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/services/storage.js -------------------------------------------------------------------------------- /app/scripts/services/tasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/services/tasks.js -------------------------------------------------------------------------------- /app/scripts/services/templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/services/templates.js -------------------------------------------------------------------------------- /app/scripts/services/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/services/util.js -------------------------------------------------------------------------------- /app/scripts/templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/scripts/templates.js -------------------------------------------------------------------------------- /app/styles/_action-chip.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/styles/_action-chip.less -------------------------------------------------------------------------------- /app/styles/_add-config-to-application.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/styles/_add-config-to-application.less -------------------------------------------------------------------------------- /app/styles/_application-launcher.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/styles/_application-launcher.less -------------------------------------------------------------------------------- /app/styles/_builds.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/styles/_builds.less -------------------------------------------------------------------------------- /app/styles/_buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/styles/_buttons.less -------------------------------------------------------------------------------- /app/styles/_cards.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/styles/_cards.less -------------------------------------------------------------------------------- /app/styles/_catalog.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/styles/_catalog.less -------------------------------------------------------------------------------- /app/styles/_component-animations.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/styles/_component-animations.less -------------------------------------------------------------------------------- /app/styles/_components.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/styles/_components.less -------------------------------------------------------------------------------- /app/styles/_container-terminal.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/styles/_container-terminal.less -------------------------------------------------------------------------------- /app/styles/_contextselector.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/styles/_contextselector.less -------------------------------------------------------------------------------- /app/styles/_core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/styles/_core.less -------------------------------------------------------------------------------- /app/styles/_data-toolbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/styles/_data-toolbar.less -------------------------------------------------------------------------------- /app/styles/_editor.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/styles/_editor.less -------------------------------------------------------------------------------- /app/styles/_ellipsis.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/styles/_ellipsis.less -------------------------------------------------------------------------------- /app/styles/_forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/styles/_forms.less -------------------------------------------------------------------------------- /app/styles/_instances.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/styles/_instances.less -------------------------------------------------------------------------------- /app/styles/_kve.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/styles/_kve.less -------------------------------------------------------------------------------- /app/styles/_layouts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/styles/_layouts.less -------------------------------------------------------------------------------- /app/styles/_list-pf.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/styles/_list-pf.less -------------------------------------------------------------------------------- /app/styles/_list-view.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/styles/_list-view.less -------------------------------------------------------------------------------- /app/styles/_log.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/styles/_log.less -------------------------------------------------------------------------------- /app/styles/_membership.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/styles/_membership.less -------------------------------------------------------------------------------- /app/styles/_mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/styles/_mixins.less -------------------------------------------------------------------------------- /app/styles/_monitoring.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/styles/_monitoring.less -------------------------------------------------------------------------------- /app/styles/_navbar-vertical.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/styles/_navbar-vertical.less -------------------------------------------------------------------------------- /app/styles/_notifications.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/styles/_notifications.less -------------------------------------------------------------------------------- /app/styles/_overlay-forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/styles/_overlay-forms.less -------------------------------------------------------------------------------- /app/styles/_overview.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/styles/_overview.less -------------------------------------------------------------------------------- /app/styles/_patternfly-additions.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/styles/_patternfly-additions.less -------------------------------------------------------------------------------- /app/styles/_pipeline.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/styles/_pipeline.less -------------------------------------------------------------------------------- /app/styles/_project-bar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/styles/_project-bar.less -------------------------------------------------------------------------------- /app/styles/_projects.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/styles/_projects.less -------------------------------------------------------------------------------- /app/styles/_responsive-utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/styles/_responsive-utilities.less -------------------------------------------------------------------------------- /app/styles/_scroll-shadows-horizontal.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/styles/_scroll-shadows-horizontal.less -------------------------------------------------------------------------------- /app/styles/_scrollbars.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/styles/_scrollbars.less -------------------------------------------------------------------------------- /app/styles/_secrets.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/styles/_secrets.less -------------------------------------------------------------------------------- /app/styles/_set-home-page.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/styles/_set-home-page.less -------------------------------------------------------------------------------- /app/styles/_settings.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/styles/_settings.less -------------------------------------------------------------------------------- /app/styles/_sidebar-right.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/styles/_sidebar-right.less -------------------------------------------------------------------------------- /app/styles/_spacers.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/styles/_spacers.less -------------------------------------------------------------------------------- /app/styles/_system-status.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/styles/_system-status.less -------------------------------------------------------------------------------- /app/styles/_tables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/styles/_tables.less -------------------------------------------------------------------------------- /app/styles/_tile.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/styles/_tile.less -------------------------------------------------------------------------------- /app/styles/_tooltip.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/styles/_tooltip.less -------------------------------------------------------------------------------- /app/styles/_typography.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/styles/_typography.less -------------------------------------------------------------------------------- /app/styles/_utils.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/styles/_utils.less -------------------------------------------------------------------------------- /app/styles/_variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/styles/_variables.less -------------------------------------------------------------------------------- /app/styles/_vertical-nav.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/styles/_vertical-nav.less -------------------------------------------------------------------------------- /app/styles/_virtual-machine-row.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/styles/_virtual-machine-row.less -------------------------------------------------------------------------------- /app/styles/_wizard.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/styles/_wizard.less -------------------------------------------------------------------------------- /app/styles/fonts/openshift-logos-icon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/styles/fonts/openshift-logos-icon/README.md -------------------------------------------------------------------------------- /app/styles/main.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/styles/main.less -------------------------------------------------------------------------------- /app/views/_build-trends-chart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/_build-trends-chart.html -------------------------------------------------------------------------------- /app/views/_cannot-create-project.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/_cannot-create-project.html -------------------------------------------------------------------------------- /app/views/_compute-resource.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/_compute-resource.html -------------------------------------------------------------------------------- /app/views/_config-file-params.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/_config-file-params.html -------------------------------------------------------------------------------- /app/views/_container-statuses.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/_container-statuses.html -------------------------------------------------------------------------------- /app/views/_edit-request-limit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/_edit-request-limit.html -------------------------------------------------------------------------------- /app/views/_image-names.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/_image-names.html -------------------------------------------------------------------------------- /app/views/_init-containers-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/_init-containers-summary.html -------------------------------------------------------------------------------- /app/views/_parse-error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/_parse-error.html -------------------------------------------------------------------------------- /app/views/_pod-template-container.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/_pod-template-container.html -------------------------------------------------------------------------------- /app/views/_pod-template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/_pod-template.html -------------------------------------------------------------------------------- /app/views/_quota-usage-chart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/_quota-usage-chart.html -------------------------------------------------------------------------------- /app/views/_request-access.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/_request-access.html -------------------------------------------------------------------------------- /app/views/_sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/_sidebar.html -------------------------------------------------------------------------------- /app/views/_templateopt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/_templateopt.html -------------------------------------------------------------------------------- /app/views/_volume-claim-templates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/_volume-claim-templates.html -------------------------------------------------------------------------------- /app/views/_volumes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/_volumes.html -------------------------------------------------------------------------------- /app/views/_webhook-trigger-cause.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/_webhook-trigger-cause.html -------------------------------------------------------------------------------- /app/views/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/about.html -------------------------------------------------------------------------------- /app/views/add-config-volume.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/add-config-volume.html -------------------------------------------------------------------------------- /app/views/attach-pvc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/attach-pvc.html -------------------------------------------------------------------------------- /app/views/browse/_build-details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/browse/_build-details.html -------------------------------------------------------------------------------- /app/views/browse/_pod-details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/browse/_pod-details.html -------------------------------------------------------------------------------- /app/views/browse/_replica-set-actions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/browse/_replica-set-actions.html -------------------------------------------------------------------------------- /app/views/browse/_replica-set-details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/browse/_replica-set-details.html -------------------------------------------------------------------------------- /app/views/browse/build-config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/browse/build-config.html -------------------------------------------------------------------------------- /app/views/browse/build.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/browse/build.html -------------------------------------------------------------------------------- /app/views/browse/config-map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/browse/config-map.html -------------------------------------------------------------------------------- /app/views/browse/config-maps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/browse/config-maps.html -------------------------------------------------------------------------------- /app/views/browse/deployment-config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/browse/deployment-config.html -------------------------------------------------------------------------------- /app/views/browse/deployment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/browse/deployment.html -------------------------------------------------------------------------------- /app/views/browse/image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/browse/image.html -------------------------------------------------------------------------------- /app/views/browse/imagestream.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/browse/imagestream.html -------------------------------------------------------------------------------- /app/views/browse/persistent-volume-claim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/browse/persistent-volume-claim.html -------------------------------------------------------------------------------- /app/views/browse/pod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/browse/pod.html -------------------------------------------------------------------------------- /app/views/browse/replica-set.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/browse/replica-set.html -------------------------------------------------------------------------------- /app/views/browse/route.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/browse/route.html -------------------------------------------------------------------------------- /app/views/browse/routes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/browse/routes.html -------------------------------------------------------------------------------- /app/views/browse/secret.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/browse/secret.html -------------------------------------------------------------------------------- /app/views/browse/service-instance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/browse/service-instance.html -------------------------------------------------------------------------------- /app/views/browse/service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/browse/service.html -------------------------------------------------------------------------------- /app/views/browse/stateful-set.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/browse/stateful-set.html -------------------------------------------------------------------------------- /app/views/browse/stateful-sets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/browse/stateful-sets.html -------------------------------------------------------------------------------- /app/views/builds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/builds.html -------------------------------------------------------------------------------- /app/views/catalog/_image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/catalog/_image.html -------------------------------------------------------------------------------- /app/views/catalog/_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/catalog/_template.html -------------------------------------------------------------------------------- /app/views/catalog/catalog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/catalog/catalog.html -------------------------------------------------------------------------------- /app/views/catalog/category-content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/catalog/category-content.html -------------------------------------------------------------------------------- /app/views/command-line.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/command-line.html -------------------------------------------------------------------------------- /app/views/create-config-map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/create-config-map.html -------------------------------------------------------------------------------- /app/views/create-from-url.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/create-from-url.html -------------------------------------------------------------------------------- /app/views/create-persistent-volume-claim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/create-persistent-volume-claim.html -------------------------------------------------------------------------------- /app/views/create-project.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/create-project.html -------------------------------------------------------------------------------- /app/views/create-route.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/create-route.html -------------------------------------------------------------------------------- /app/views/create-secret.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/create-secret.html -------------------------------------------------------------------------------- /app/views/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/create.html -------------------------------------------------------------------------------- /app/views/create/category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/create/category.html -------------------------------------------------------------------------------- /app/views/create/fromimage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/create/fromimage.html -------------------------------------------------------------------------------- /app/views/create/next-steps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/create/next-steps.html -------------------------------------------------------------------------------- /app/views/deployments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/deployments.html -------------------------------------------------------------------------------- /app/views/directives/_build-close.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/_build-close.html -------------------------------------------------------------------------------- /app/views/directives/_build-pipeline-links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/_build-pipeline-links.html -------------------------------------------------------------------------------- /app/views/directives/_click-to-reveal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/_click-to-reveal.html -------------------------------------------------------------------------------- /app/views/directives/_copy-to-clipboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/_copy-to-clipboard.html -------------------------------------------------------------------------------- /app/views/directives/_copy-webhook-trigger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/_copy-webhook-trigger.html -------------------------------------------------------------------------------- /app/views/directives/_custom-icon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/_custom-icon.html -------------------------------------------------------------------------------- /app/views/directives/_edit-command.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/_edit-command.html -------------------------------------------------------------------------------- /app/views/directives/_edit-probe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/_edit-probe.html -------------------------------------------------------------------------------- /app/views/directives/_ellipsis-loader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/_ellipsis-loader.html -------------------------------------------------------------------------------- /app/views/directives/_ellipsis-pulser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/_ellipsis-pulser.html -------------------------------------------------------------------------------- /app/views/directives/_probe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/_probe.html -------------------------------------------------------------------------------- /app/views/directives/_project-filter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/_project-filter.html -------------------------------------------------------------------------------- /app/views/directives/_service-binding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/_service-binding.html -------------------------------------------------------------------------------- /app/views/directives/_status-icon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/_status-icon.html -------------------------------------------------------------------------------- /app/views/directives/_warnings-popover.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/_warnings-popover.html -------------------------------------------------------------------------------- /app/views/directives/action-chip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/action-chip.html -------------------------------------------------------------------------------- /app/views/directives/annotations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/annotations.html -------------------------------------------------------------------------------- /app/views/directives/bind-service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/bind-service.html -------------------------------------------------------------------------------- /app/views/directives/bind-service/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/bind-service/results.html -------------------------------------------------------------------------------- /app/views/directives/breadcrumbs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/breadcrumbs.html -------------------------------------------------------------------------------- /app/views/directives/build-hooks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/build-hooks.html -------------------------------------------------------------------------------- /app/views/directives/build-pipeline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/build-pipeline.html -------------------------------------------------------------------------------- /app/views/directives/build-status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/build-status.html -------------------------------------------------------------------------------- /app/views/directives/create-secret.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/create-secret.html -------------------------------------------------------------------------------- /app/views/directives/delete-button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/delete-button.html -------------------------------------------------------------------------------- /app/views/directives/delete-link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/delete-link.html -------------------------------------------------------------------------------- /app/views/directives/deploy-image-dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/deploy-image-dialog.html -------------------------------------------------------------------------------- /app/views/directives/deploy-image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/deploy-image.html -------------------------------------------------------------------------------- /app/views/directives/deployment-donut.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/deployment-donut.html -------------------------------------------------------------------------------- /app/views/directives/deployment-metrics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/deployment-metrics.html -------------------------------------------------------------------------------- /app/views/directives/edit-environment-from.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/edit-environment-from.html -------------------------------------------------------------------------------- /app/views/directives/events-badge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/events-badge.html -------------------------------------------------------------------------------- /app/views/directives/events-sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/events-sidebar.html -------------------------------------------------------------------------------- /app/views/directives/events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/events.html -------------------------------------------------------------------------------- /app/views/directives/from-file-dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/from-file-dialog.html -------------------------------------------------------------------------------- /app/views/directives/from-file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/from-file.html -------------------------------------------------------------------------------- /app/views/directives/header/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/header/header.html -------------------------------------------------------------------------------- /app/views/directives/hpa.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/hpa.html -------------------------------------------------------------------------------- /app/views/directives/key-value-editor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/key-value-editor.html -------------------------------------------------------------------------------- /app/views/directives/label-editor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/label-editor.html -------------------------------------------------------------------------------- /app/views/directives/labels.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/labels.html -------------------------------------------------------------------------------- /app/views/directives/lifecycle-hook.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/lifecycle-hook.html -------------------------------------------------------------------------------- /app/views/directives/logs/_log-raw.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/logs/_log-raw.html -------------------------------------------------------------------------------- /app/views/directives/logs/_log-viewer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/logs/_log-viewer.html -------------------------------------------------------------------------------- /app/views/directives/metrics-compact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/metrics-compact.html -------------------------------------------------------------------------------- /app/views/directives/next-steps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/next-steps.html -------------------------------------------------------------------------------- /app/views/directives/osc-autoscaling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/osc-autoscaling.html -------------------------------------------------------------------------------- /app/views/directives/osc-file-input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/osc-file-input.html -------------------------------------------------------------------------------- /app/views/directives/osc-form-section.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/osc-form-section.html -------------------------------------------------------------------------------- /app/views/directives/osc-image-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/osc-image-summary.html -------------------------------------------------------------------------------- /app/views/directives/osc-routing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/osc-routing.html -------------------------------------------------------------------------------- /app/views/directives/osc-secrets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/osc-secrets.html -------------------------------------------------------------------------------- /app/views/directives/osc-source-secrets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/osc-source-secrets.html -------------------------------------------------------------------------------- /app/views/directives/pipeline-status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/pipeline-status.html -------------------------------------------------------------------------------- /app/views/directives/pod-donut.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/pod-donut.html -------------------------------------------------------------------------------- /app/views/directives/pod-metrics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/pod-metrics.html -------------------------------------------------------------------------------- /app/views/directives/pods-table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/pods-table.html -------------------------------------------------------------------------------- /app/views/directives/process-template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/process-template.html -------------------------------------------------------------------------------- /app/views/directives/replicas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/replicas.html -------------------------------------------------------------------------------- /app/views/directives/select-containers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/select-containers.html -------------------------------------------------------------------------------- /app/views/directives/selector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/selector.html -------------------------------------------------------------------------------- /app/views/directives/traffic-table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/traffic-table.html -------------------------------------------------------------------------------- /app/views/directives/ui-ace-yaml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/ui-ace-yaml.html -------------------------------------------------------------------------------- /app/views/directives/unbind-service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/directives/unbind-service.html -------------------------------------------------------------------------------- /app/views/edit/autoscaler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/edit/autoscaler.html -------------------------------------------------------------------------------- /app/views/edit/build-config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/edit/build-config.html -------------------------------------------------------------------------------- /app/views/edit/config-map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/edit/config-map.html -------------------------------------------------------------------------------- /app/views/edit/deployment-config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/edit/deployment-config.html -------------------------------------------------------------------------------- /app/views/edit/health-checks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/edit/health-checks.html -------------------------------------------------------------------------------- /app/views/edit/jenkinsfile-examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/edit/jenkinsfile-examples.html -------------------------------------------------------------------------------- /app/views/edit/project.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/edit/project.html -------------------------------------------------------------------------------- /app/views/edit/route.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/edit/route.html -------------------------------------------------------------------------------- /app/views/edit/yaml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/edit/yaml.html -------------------------------------------------------------------------------- /app/views/events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/events.html -------------------------------------------------------------------------------- /app/views/images.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/images.html -------------------------------------------------------------------------------- /app/views/landing-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/landing-page.html -------------------------------------------------------------------------------- /app/views/logs/chromeless-build-log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/logs/chromeless-build-log.html -------------------------------------------------------------------------------- /app/views/logs/chromeless-pod-log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/logs/chromeless-pod-log.html -------------------------------------------------------------------------------- /app/views/logs/textonly_log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/logs/textonly_log.html -------------------------------------------------------------------------------- /app/views/membership.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/membership.html -------------------------------------------------------------------------------- /app/views/modals/confirm-replace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/modals/confirm-replace.html -------------------------------------------------------------------------------- /app/views/modals/confirm-save-log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/modals/confirm-save-log.html -------------------------------------------------------------------------------- /app/views/modals/confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/modals/confirm.html -------------------------------------------------------------------------------- /app/views/modals/confirmScale.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/modals/confirmScale.html -------------------------------------------------------------------------------- /app/views/modals/create-secret.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/modals/create-secret.html -------------------------------------------------------------------------------- /app/views/modals/debug-terminal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/modals/debug-terminal.html -------------------------------------------------------------------------------- /app/views/modals/delete-resource.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/modals/delete-resource.html -------------------------------------------------------------------------------- /app/views/modals/edit-pvc-resource.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/modals/edit-pvc-resource.html -------------------------------------------------------------------------------- /app/views/modals/logout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/modals/logout.html -------------------------------------------------------------------------------- /app/views/modals/set-home-page-modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/modals/set-home-page-modal.html -------------------------------------------------------------------------------- /app/views/monitoring.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/monitoring.html -------------------------------------------------------------------------------- /app/views/newfromtemplate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/newfromtemplate.html -------------------------------------------------------------------------------- /app/views/other-resources.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/other-resources.html -------------------------------------------------------------------------------- /app/views/overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/overview.html -------------------------------------------------------------------------------- /app/views/overview/_build-counts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/overview/_build-counts.html -------------------------------------------------------------------------------- /app/views/overview/_builds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/overview/_builds.html -------------------------------------------------------------------------------- /app/views/overview/_list-row-actions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/overview/_list-row-actions.html -------------------------------------------------------------------------------- /app/views/overview/_list-row-chevron.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/overview/_list-row-chevron.html -------------------------------------------------------------------------------- /app/views/overview/_list-row-content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/overview/_list-row-content.html -------------------------------------------------------------------------------- /app/views/overview/_list-row-expanded.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/overview/_list-row-expanded.html -------------------------------------------------------------------------------- /app/views/overview/_list-row.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/overview/_list-row.html -------------------------------------------------------------------------------- /app/views/overview/_metrics-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/overview/_metrics-summary.html -------------------------------------------------------------------------------- /app/views/overview/_mini-log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/overview/_mini-log.html -------------------------------------------------------------------------------- /app/views/overview/_mobile-client-row.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/overview/_mobile-client-row.html -------------------------------------------------------------------------------- /app/views/overview/_networking.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/overview/_networking.html -------------------------------------------------------------------------------- /app/views/overview/_notification-icon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/overview/_notification-icon.html -------------------------------------------------------------------------------- /app/views/overview/_pipelines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/overview/_pipelines.html -------------------------------------------------------------------------------- /app/views/overview/_service-bindings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/overview/_service-bindings.html -------------------------------------------------------------------------------- /app/views/overview/_traffic-percent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/overview/_traffic-percent.html -------------------------------------------------------------------------------- /app/views/overview/_virtual-machine-row.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/overview/_virtual-machine-row.html -------------------------------------------------------------------------------- /app/views/overview/_vm-status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/overview/_vm-status.html -------------------------------------------------------------------------------- /app/views/pipelines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/pipelines.html -------------------------------------------------------------------------------- /app/views/pods.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/pods.html -------------------------------------------------------------------------------- /app/views/project-browse-catalog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/project-browse-catalog.html -------------------------------------------------------------------------------- /app/views/projects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/projects.html -------------------------------------------------------------------------------- /app/views/quota.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/quota.html -------------------------------------------------------------------------------- /app/views/secrets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/secrets.html -------------------------------------------------------------------------------- /app/views/service-instances.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/service-instances.html -------------------------------------------------------------------------------- /app/views/services.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/services.html -------------------------------------------------------------------------------- /app/views/set-limits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/set-limits.html -------------------------------------------------------------------------------- /app/views/storage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/storage.html -------------------------------------------------------------------------------- /app/views/util/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/util/error.html -------------------------------------------------------------------------------- /app/views/util/logout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/util/logout.html -------------------------------------------------------------------------------- /app/views/util/oauth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/app/views/util/oauth.html -------------------------------------------------------------------------------- /assets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/assets.go -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/bower.json -------------------------------------------------------------------------------- /dist.java/java/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/404.html -------------------------------------------------------------------------------- /dist.java/java/app-747a60cd4f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/app-747a60cd4f.js -------------------------------------------------------------------------------- /dist.java/java/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/favicon.ico -------------------------------------------------------------------------------- /dist.java/java/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /dist.java/java/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /dist.java/java/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /dist.java/java/img/OpenShift-Logo-NoText.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/OpenShift-Logo-NoText.svg -------------------------------------------------------------------------------- /dist.java/java/img/OpenShift-Logo-Text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/OpenShift-Logo-Text.svg -------------------------------------------------------------------------------- /dist.java/java/img/OpenShift-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/OpenShift-logo.svg -------------------------------------------------------------------------------- /dist.java/java/img/RH_Atomic-Logo-NoText.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/RH_Atomic-Logo-NoText.svg -------------------------------------------------------------------------------- /dist.java/java/img/RH_Atomic-Logo-Text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/RH_Atomic-Logo-Text.svg -------------------------------------------------------------------------------- /dist.java/java/img/RH_atomic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/RH_atomic.svg -------------------------------------------------------------------------------- /dist.java/java/img/ZeroClipboard.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/ZeroClipboard.swf -------------------------------------------------------------------------------- /dist.java/java/img/bg-login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/bg-login.jpg -------------------------------------------------------------------------------- /dist.java/java/img/bg-modal-about-pf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/bg-modal-about-pf.png -------------------------------------------------------------------------------- /dist.java/java/img/bg-navbar-pf-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/bg-navbar-pf-alt.svg -------------------------------------------------------------------------------- /dist.java/java/img/brand-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/brand-alt.svg -------------------------------------------------------------------------------- /dist.java/java/img/brand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/brand.svg -------------------------------------------------------------------------------- /dist.java/java/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/favicon.ico -------------------------------------------------------------------------------- /dist.java/java/img/hawtio_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/hawtio_logo.svg -------------------------------------------------------------------------------- /dist.java/java/img/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/icons.gif -------------------------------------------------------------------------------- /dist.java/java/img/icons/activemq/queue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/icons/activemq/queue.png -------------------------------------------------------------------------------- /dist.java/java/img/icons/activemq/sender.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/icons/activemq/sender.gif -------------------------------------------------------------------------------- /dist.java/java/img/icons/activemq/topic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/icons/activemq/topic.png -------------------------------------------------------------------------------- /dist.java/java/img/icons/camel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/icons/camel.svg -------------------------------------------------------------------------------- /dist.java/java/img/icons/camel/bean24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/icons/camel/bean24.png -------------------------------------------------------------------------------- /dist.java/java/img/icons/camel/camel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/icons/camel/camel.png -------------------------------------------------------------------------------- /dist.java/java/img/icons/camel/channel24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/icons/camel/channel24.png -------------------------------------------------------------------------------- /dist.java/java/img/icons/camel/choice24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/icons/camel/choice24.png -------------------------------------------------------------------------------- /dist.java/java/img/icons/camel/detour24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/icons/camel/detour24.png -------------------------------------------------------------------------------- /dist.java/java/img/icons/camel/endoints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/icons/camel/endoints.png -------------------------------------------------------------------------------- /dist.java/java/img/icons/camel/enrich24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/icons/camel/enrich24.png -------------------------------------------------------------------------------- /dist.java/java/img/icons/camel/filter24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/icons/camel/filter24.png -------------------------------------------------------------------------------- /dist.java/java/img/icons/camel/flow24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/icons/camel/flow24.png -------------------------------------------------------------------------------- /dist.java/java/img/icons/camel/generic24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/icons/camel/generic24.png -------------------------------------------------------------------------------- /dist.java/java/img/icons/camel/log24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/icons/camel/log24.png -------------------------------------------------------------------------------- /dist.java/java/img/icons/camel/marshal24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/icons/camel/marshal24.png -------------------------------------------------------------------------------- /dist.java/java/img/icons/camel/message24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/icons/camel/message24.png -------------------------------------------------------------------------------- /dist.java/java/img/icons/camel/node24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/icons/camel/node24.png -------------------------------------------------------------------------------- /dist.java/java/img/icons/camel/process24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/icons/camel/process24.png -------------------------------------------------------------------------------- /dist.java/java/img/icons/camel/resume.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/icons/camel/resume.gif -------------------------------------------------------------------------------- /dist.java/java/img/icons/camel/route24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/icons/camel/route24.png -------------------------------------------------------------------------------- /dist.java/java/img/icons/camel/setBody24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/icons/camel/setBody24.png -------------------------------------------------------------------------------- /dist.java/java/img/icons/camel/split24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/icons/camel/split24.png -------------------------------------------------------------------------------- /dist.java/java/img/icons/camel/step.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/icons/camel/step.gif -------------------------------------------------------------------------------- /dist.java/java/img/icons/camel/suspend.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/icons/camel/suspend.gif -------------------------------------------------------------------------------- /dist.java/java/img/icons/camel/wireTap24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/icons/camel/wireTap24.png -------------------------------------------------------------------------------- /dist.java/java/img/icons/cassandra.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/icons/cassandra.svg -------------------------------------------------------------------------------- /dist.java/java/img/icons/fabric8_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/icons/fabric8_icon.svg -------------------------------------------------------------------------------- /dist.java/java/img/icons/messagebroker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/icons/messagebroker.svg -------------------------------------------------------------------------------- /dist.java/java/img/icons/osgi/bundle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/icons/osgi/bundle.png -------------------------------------------------------------------------------- /dist.java/java/img/icons/osgi/service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/icons/osgi/service.png -------------------------------------------------------------------------------- /dist.java/java/img/icons/quartz/quarz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/icons/quartz/quarz.png -------------------------------------------------------------------------------- /dist.java/java/img/kubernetes-Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/kubernetes-Logo.svg -------------------------------------------------------------------------------- /dist.java/java/img/kubernetes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/kubernetes.svg -------------------------------------------------------------------------------- /dist.java/java/img/logo-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/logo-alt.svg -------------------------------------------------------------------------------- /dist.java/java/img/logo-origin-thin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/logo-origin-thin.svg -------------------------------------------------------------------------------- /dist.java/java/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/logo.svg -------------------------------------------------------------------------------- /dist.java/java/img/spinner-inverse-lg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/spinner-inverse-lg.gif -------------------------------------------------------------------------------- /dist.java/java/img/spinner-inverse-sm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/spinner-inverse-sm.gif -------------------------------------------------------------------------------- /dist.java/java/img/spinner-inverse-xs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/spinner-inverse-xs.gif -------------------------------------------------------------------------------- /dist.java/java/img/spinner-inverse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/spinner-inverse.gif -------------------------------------------------------------------------------- /dist.java/java/img/spinner-lg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/spinner-lg.gif -------------------------------------------------------------------------------- /dist.java/java/img/spinner-sm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/spinner-sm.gif -------------------------------------------------------------------------------- /dist.java/java/img/spinner-xs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/spinner-xs.gif -------------------------------------------------------------------------------- /dist.java/java/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/img/spinner.gif -------------------------------------------------------------------------------- /dist.java/java/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/index.html -------------------------------------------------------------------------------- /dist.java/java/libs-a07e8842c6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/libs-a07e8842c6.js -------------------------------------------------------------------------------- /dist.java/java/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/style.css -------------------------------------------------------------------------------- /dist.java/java/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist.java/java/version.json -------------------------------------------------------------------------------- /dist/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/404.html -------------------------------------------------------------------------------- /dist/images/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /dist/images/console-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/console-sprite.png -------------------------------------------------------------------------------- /dist/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/favicon.ico -------------------------------------------------------------------------------- /dist/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/favicon.png -------------------------------------------------------------------------------- /dist/images/logo-OCP-console-hdr-stacked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logo-OCP-console-hdr-stacked.svg -------------------------------------------------------------------------------- /dist/images/logo-OCP-console-hdr-thin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logo-OCP-console-hdr-thin.svg -------------------------------------------------------------------------------- /dist/images/logo-okd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logo-okd.svg -------------------------------------------------------------------------------- /dist/images/logo-origin-thin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logo-origin-thin.svg -------------------------------------------------------------------------------- /dist/images/logo-origin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logo-origin.png -------------------------------------------------------------------------------- /dist/images/logo-origin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logo-origin.svg -------------------------------------------------------------------------------- /dist/images/logos/3scale.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/3scale.svg -------------------------------------------------------------------------------- /dist/images/logos/aerogear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/aerogear.svg -------------------------------------------------------------------------------- /dist/images/logos/amq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/amq.svg -------------------------------------------------------------------------------- /dist/images/logos/angularjs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/angularjs.svg -------------------------------------------------------------------------------- /dist/images/logos/ansible.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/ansible.svg -------------------------------------------------------------------------------- /dist/images/logos/apache.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/apache.svg -------------------------------------------------------------------------------- /dist/images/logos/beaker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/beaker.svg -------------------------------------------------------------------------------- /dist/images/logos/capedwarf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/capedwarf.svg -------------------------------------------------------------------------------- /dist/images/logos/cassandra.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/cassandra.svg -------------------------------------------------------------------------------- /dist/images/logos/clojure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/clojure.svg -------------------------------------------------------------------------------- /dist/images/logos/codeigniter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/codeigniter.svg -------------------------------------------------------------------------------- /dist/images/logos/cordova.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/cordova.png -------------------------------------------------------------------------------- /dist/images/logos/datagrid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/datagrid.svg -------------------------------------------------------------------------------- /dist/images/logos/datavirt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/datavirt.svg -------------------------------------------------------------------------------- /dist/images/logos/debian.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/debian.svg -------------------------------------------------------------------------------- /dist/images/logos/decisionserver.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/decisionserver.svg -------------------------------------------------------------------------------- /dist/images/logos/django.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/django.svg -------------------------------------------------------------------------------- /dist/images/logos/dotnet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/dotnet.svg -------------------------------------------------------------------------------- /dist/images/logos/drupal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/drupal.svg -------------------------------------------------------------------------------- /dist/images/logos/eap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/eap.svg -------------------------------------------------------------------------------- /dist/images/logos/elastic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/elastic.svg -------------------------------------------------------------------------------- /dist/images/logos/erlang.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/erlang.svg -------------------------------------------------------------------------------- /dist/images/logos/fedora.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/fedora.svg -------------------------------------------------------------------------------- /dist/images/logos/freebsd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/freebsd.svg -------------------------------------------------------------------------------- /dist/images/logos/git.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/git.svg -------------------------------------------------------------------------------- /dist/images/logos/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/github.svg -------------------------------------------------------------------------------- /dist/images/logos/gitlab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/gitlab.svg -------------------------------------------------------------------------------- /dist/images/logos/glassfish.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/glassfish.svg -------------------------------------------------------------------------------- /dist/images/logos/go-gopher.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/go-gopher.svg -------------------------------------------------------------------------------- /dist/images/logos/grails.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/grails.svg -------------------------------------------------------------------------------- /dist/images/logos/hadoop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/hadoop.svg -------------------------------------------------------------------------------- /dist/images/logos/haproxy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/haproxy.svg -------------------------------------------------------------------------------- /dist/images/logos/infinispan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/infinispan.svg -------------------------------------------------------------------------------- /dist/images/logos/jboss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/jboss.svg -------------------------------------------------------------------------------- /dist/images/logos/jenkins.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/jenkins.svg -------------------------------------------------------------------------------- /dist/images/logos/jetty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/jetty.svg -------------------------------------------------------------------------------- /dist/images/logos/joomla.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/joomla.svg -------------------------------------------------------------------------------- /dist/images/logos/jruby.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/jruby.svg -------------------------------------------------------------------------------- /dist/images/logos/js.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/js.svg -------------------------------------------------------------------------------- /dist/images/logos/kubevirt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/kubevirt.svg -------------------------------------------------------------------------------- /dist/images/logos/laravel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/laravel.svg -------------------------------------------------------------------------------- /dist/images/logos/load-balancer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/load-balancer.svg -------------------------------------------------------------------------------- /dist/images/logos/mariadb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/mariadb.svg -------------------------------------------------------------------------------- /dist/images/logos/mediawiki.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/mediawiki.svg -------------------------------------------------------------------------------- /dist/images/logos/memcached.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/memcached.svg -------------------------------------------------------------------------------- /dist/images/logos/mongodb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/mongodb.svg -------------------------------------------------------------------------------- /dist/images/logos/mssql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/mssql.svg -------------------------------------------------------------------------------- /dist/images/logos/mysql-database.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/mysql-database.svg -------------------------------------------------------------------------------- /dist/images/logos/nginx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/nginx.svg -------------------------------------------------------------------------------- /dist/images/logos/nodejs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/nodejs.svg -------------------------------------------------------------------------------- /dist/images/logos/openjdk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/openjdk.svg -------------------------------------------------------------------------------- /dist/images/logos/openliberty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/openliberty.svg -------------------------------------------------------------------------------- /dist/images/logos/openshift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/openshift.svg -------------------------------------------------------------------------------- /dist/images/logos/openstack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/openstack.svg -------------------------------------------------------------------------------- /dist/images/logos/other-linux.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/other-linux.svg -------------------------------------------------------------------------------- /dist/images/logos/other-unknown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/other-unknown.svg -------------------------------------------------------------------------------- /dist/images/logos/perl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/perl.svg -------------------------------------------------------------------------------- /dist/images/logos/phalcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/phalcon.svg -------------------------------------------------------------------------------- /dist/images/logos/php.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/php.svg -------------------------------------------------------------------------------- /dist/images/logos/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/play.svg -------------------------------------------------------------------------------- /dist/images/logos/postgresql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/postgresql.svg -------------------------------------------------------------------------------- /dist/images/logos/processserver.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/processserver.svg -------------------------------------------------------------------------------- /dist/images/logos/python.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/python.svg -------------------------------------------------------------------------------- /dist/images/logos/rabbitmq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/rabbitmq.svg -------------------------------------------------------------------------------- /dist/images/logos/rails.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/rails.svg -------------------------------------------------------------------------------- /dist/images/logos/redis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/redis.svg -------------------------------------------------------------------------------- /dist/images/logos/rh-integration.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/rh-integration.svg -------------------------------------------------------------------------------- /dist/images/logos/rh-tomcat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/rh-tomcat.svg -------------------------------------------------------------------------------- /dist/images/logos/ruby.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/ruby.svg -------------------------------------------------------------------------------- /dist/images/logos/scala.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/scala.svg -------------------------------------------------------------------------------- /dist/images/logos/shadowman.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/shadowman.svg -------------------------------------------------------------------------------- /dist/images/logos/spring.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/spring.svg -------------------------------------------------------------------------------- /dist/images/logos/sso.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/sso.svg -------------------------------------------------------------------------------- /dist/images/logos/stackoverflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/stackoverflow.svg -------------------------------------------------------------------------------- /dist/images/logos/suse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/suse.svg -------------------------------------------------------------------------------- /dist/images/logos/symfony.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/symfony.svg -------------------------------------------------------------------------------- /dist/images/logos/tomcat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/tomcat.svg -------------------------------------------------------------------------------- /dist/images/logos/ubuntu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/ubuntu.svg -------------------------------------------------------------------------------- /dist/images/logos/wildfly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/wildfly.svg -------------------------------------------------------------------------------- /dist/images/logos/windows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/windows.svg -------------------------------------------------------------------------------- /dist/images/logos/wordpress.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/wordpress.svg -------------------------------------------------------------------------------- /dist/images/logos/xamarin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/xamarin.svg -------------------------------------------------------------------------------- /dist/images/logos/zend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/logos/zend.svg -------------------------------------------------------------------------------- /dist/images/mask-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/mask-icon.svg -------------------------------------------------------------------------------- /dist/images/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/mstile-144x144.png -------------------------------------------------------------------------------- /dist/images/openshift-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/openshift-logo.svg -------------------------------------------------------------------------------- /dist/images/openshift-logo222.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/openshift-logo222.png -------------------------------------------------------------------------------- /dist/images/redhat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/redhat.png -------------------------------------------------------------------------------- /dist/images/redhat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/redhat.svg -------------------------------------------------------------------------------- /dist/images/sprite-vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/images/sprite-vert.png -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/index.html -------------------------------------------------------------------------------- /dist/robots.txt: -------------------------------------------------------------------------------- 1 | # robotstxt.org 2 | 3 | User-agent: * 4 | -------------------------------------------------------------------------------- /dist/scripts/oldieshim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/scripts/oldieshim.js -------------------------------------------------------------------------------- /dist/scripts/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/scripts/scripts.js -------------------------------------------------------------------------------- /dist/scripts/templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/scripts/templates.js -------------------------------------------------------------------------------- /dist/scripts/vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/scripts/vendor.js -------------------------------------------------------------------------------- /dist/styles/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/styles/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /dist/styles/fonts/OpenSans-Bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/styles/fonts/OpenSans-Bold-webfont.eot -------------------------------------------------------------------------------- /dist/styles/fonts/OpenSans-Bold-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/styles/fonts/OpenSans-Bold-webfont.svg -------------------------------------------------------------------------------- /dist/styles/fonts/OpenSans-Bold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/styles/fonts/OpenSans-Bold-webfont.ttf -------------------------------------------------------------------------------- /dist/styles/fonts/OpenSans-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/styles/fonts/OpenSans-Bold-webfont.woff -------------------------------------------------------------------------------- /dist/styles/fonts/OpenSans-Light-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/styles/fonts/OpenSans-Light-webfont.eot -------------------------------------------------------------------------------- /dist/styles/fonts/OpenSans-Light-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/styles/fonts/OpenSans-Light-webfont.svg -------------------------------------------------------------------------------- /dist/styles/fonts/OpenSans-Light-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/styles/fonts/OpenSans-Light-webfont.ttf -------------------------------------------------------------------------------- /dist/styles/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/styles/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /dist/styles/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/styles/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /dist/styles/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/styles/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /dist/styles/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/styles/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /dist/styles/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/styles/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /dist/styles/fonts/openshift-logos-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/styles/fonts/openshift-logos-icon.svg -------------------------------------------------------------------------------- /dist/styles/fonts/openshift-logos-icon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/styles/fonts/openshift-logos-icon.ttf -------------------------------------------------------------------------------- /dist/styles/fonts/openshift-logos-icon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/styles/fonts/openshift-logos-icon.woff -------------------------------------------------------------------------------- /dist/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/styles/main.css -------------------------------------------------------------------------------- /dist/styles/vendor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/dist/styles/vendor.css -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/doc.go -------------------------------------------------------------------------------- /extensions/examples/online-extensions.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/extensions/examples/online-extensions.css -------------------------------------------------------------------------------- /extensions/examples/online-extensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/extensions/examples/online-extensions.js -------------------------------------------------------------------------------- /extensions/local-extensions.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/extensions/local-extensions.css -------------------------------------------------------------------------------- /extensions/local-extensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/extensions/local-extensions.js -------------------------------------------------------------------------------- /hack/clean-deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/hack/clean-deps.sh -------------------------------------------------------------------------------- /hack/install-deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/hack/install-deps.sh -------------------------------------------------------------------------------- /hack/lib/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/hack/lib/init.sh -------------------------------------------------------------------------------- /hack/lib/log/output.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/hack/lib/log/output.sh -------------------------------------------------------------------------------- /hack/lib/log/output_additions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/hack/lib/log/output_additions.sh -------------------------------------------------------------------------------- /hack/lib/util/text.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/hack/lib/util/text.sh -------------------------------------------------------------------------------- /hack/test-headless.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/hack/test-headless.sh -------------------------------------------------------------------------------- /hack/verify-dist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/hack/verify-dist.sh -------------------------------------------------------------------------------- /httpd-cfg/openshift-web-console.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/httpd-cfg/openshift-web-console.conf -------------------------------------------------------------------------------- /images/origin-web-console-builder/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/images/origin-web-console-builder/Dockerfile -------------------------------------------------------------------------------- /images/origin-web-console-release/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/images/origin-web-console-release/Dockerfile -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/package.json -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- 1 | coverage 2 | tmp -------------------------------------------------------------------------------- /test/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/test/.jshintrc -------------------------------------------------------------------------------- /test/extensions/local-extensions.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/test/extensions/local-extensions.css -------------------------------------------------------------------------------- /test/extensions/local-extensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/test/extensions/local-extensions.js -------------------------------------------------------------------------------- /test/integration/e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/test/integration/e2e.js -------------------------------------------------------------------------------- /test/integration/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/test/integration/helpers.js -------------------------------------------------------------------------------- /test/integration/helpers/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/test/integration/helpers/env.js -------------------------------------------------------------------------------- /test/integration/helpers/inputs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/test/integration/helpers/inputs.js -------------------------------------------------------------------------------- /test/integration/helpers/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/test/integration/helpers/logger.js -------------------------------------------------------------------------------- /test/integration/helpers/matchers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/test/integration/helpers/matchers.js -------------------------------------------------------------------------------- /test/integration/helpers/project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/test/integration/helpers/project.js -------------------------------------------------------------------------------- /test/integration/helpers/screenshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/test/integration/helpers/screenshot.js -------------------------------------------------------------------------------- /test/integration/helpers/scroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/test/integration/helpers/scroll.js -------------------------------------------------------------------------------- /test/integration/helpers/tables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/test/integration/helpers/tables.js -------------------------------------------------------------------------------- /test/integration/page-objects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/test/integration/page-objects/README.md -------------------------------------------------------------------------------- /test/integration/page-objects/builds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/test/integration/page-objects/builds.js -------------------------------------------------------------------------------- /test/integration/page-objects/catalog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/test/integration/page-objects/catalog.js -------------------------------------------------------------------------------- /test/integration/page-objects/deployments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/test/integration/page-objects/deployments.js -------------------------------------------------------------------------------- /test/integration/page-objects/menus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/test/integration/page-objects/menus.js -------------------------------------------------------------------------------- /test/integration/page-objects/overview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/test/integration/page-objects/overview.js -------------------------------------------------------------------------------- /test/integration/page-objects/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/test/integration/page-objects/page.js -------------------------------------------------------------------------------- /test/integration/page-objects/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/test/integration/page-objects/routes.js -------------------------------------------------------------------------------- /test/integration/page-objects/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/test/integration/page-objects/services.js -------------------------------------------------------------------------------- /test/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/test/karma.conf.js -------------------------------------------------------------------------------- /test/protractor-mac.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/test/protractor-mac.conf.js -------------------------------------------------------------------------------- /test/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/test/protractor.conf.js -------------------------------------------------------------------------------- /test/spec/controllers/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/test/spec/controllers/create.js -------------------------------------------------------------------------------- /test/spec/controllers/projects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/test/spec/controllers/projects.js -------------------------------------------------------------------------------- /test/spec/filters/defaultIfEmptySpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/test/spec/filters/defaultIfEmptySpec.js -------------------------------------------------------------------------------- /test/spec/filters/entrypointSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/test/spec/filters/entrypointSpec.js -------------------------------------------------------------------------------- /test/spec/filters/httpHttpsSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/test/spec/filters/httpHttpsSpec.js -------------------------------------------------------------------------------- /test/spec/filters/valuesInSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/test/spec/filters/valuesInSpec.js -------------------------------------------------------------------------------- /test/spec/filters/valuesNotInSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/test/spec/filters/valuesNotInSpec.js -------------------------------------------------------------------------------- /test/spec/filters/yesNoSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/test/spec/filters/yesNoSpec.js -------------------------------------------------------------------------------- /test/spec/fixtures/api-discovery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/test/spec/fixtures/api-discovery.js -------------------------------------------------------------------------------- /test/spec/services/breadcrumbsServiceSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/test/spec/services/breadcrumbsServiceSpec.js -------------------------------------------------------------------------------- /test/spec/services/cliHelpSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/test/spec/services/cliHelpSpec.js -------------------------------------------------------------------------------- /test/spec/services/environmentServiceSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/test/spec/services/environmentServiceSpec.js -------------------------------------------------------------------------------- /test/spec/services/homePagePreferenceSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/test/spec/services/homePagePreferenceSpec.js -------------------------------------------------------------------------------- /test/spec/services/hpaServiceSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/test/spec/services/hpaServiceSpec.js -------------------------------------------------------------------------------- /test/spec/services/nameGeneratorSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/test/spec/services/nameGeneratorSpec.js -------------------------------------------------------------------------------- /test/spec/services/routesSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/test/spec/services/routesSpec.js -------------------------------------------------------------------------------- /test/spec/spec-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/test/spec/spec-helper.js -------------------------------------------------------------------------------- /test/testdata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/test/testdata/README.md -------------------------------------------------------------------------------- /test/testdata/k8s-deployments.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/test/testdata/k8s-deployments.yaml -------------------------------------------------------------------------------- /test/testdata/overview-edge-cases.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/test/testdata/overview-edge-cases.yaml -------------------------------------------------------------------------------- /test/upgrade-selenium.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/test/upgrade-selenium.js -------------------------------------------------------------------------------- /tls/tls.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/tls/tls.crt -------------------------------------------------------------------------------- /tls/tls.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/origin-web-console/HEAD/tls/tls.key --------------------------------------------------------------------------------